From 3a1112a1090ef412b8a776872cbc18942459072a Mon Sep 17 00:00:00 2001 From: Vittorio Guerriero Date: Sat, 11 Apr 2020 11:24:18 +0100 Subject: [PATCH 01/43] docs(readme): add local-development instructions (#300) --- README.md | 5 ++- ui/doczrc.js | 3 +- ui/src/views/local-development.mdx | 67 ++++++++++++++++++++++++++++++ 3 files changed, 73 insertions(+), 2 deletions(-) create mode 100644 ui/src/views/local-development.mdx diff --git a/README.md b/README.md index 3944e3ee9..aa2468dce 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ [![npm version](https://badge.fury.io/js/ts-auto-mock.svg)](https://badge.fury.io/js/ts-auto-mock) [![Downloads](https://img.shields.io/npm/dw/ts-auto-mock.svg)](https://www.npmjs.com/package/ts-auto-mock) - ![slack](docs/slack_small.png) Need help? Join us on [Slack](https://join.slack.com/t/typescripttdd/shared_invite/enQtODk3MjQwNzUwNTk2LTMzNjdlZTNmMmY3Nzg2NDNiZDA1YzJmZjk2NjcwZjQwODQ3YzE5NGZjM2Q4MzZjYWNiMWE4MGU0NjEzM2E5YzE) A Typescript transformer that will allow you to create mock for any types (Interfaces, Classes, ...) without need to create manual fakes/mocks. @@ -36,6 +35,10 @@ mock.details // "{phone: 0} " ## [Changelog](CHANGELOG.md) ## [Roadmap](https://github.com/Typescript-TDD/ts-auto-mock/wiki/Roadmap) + +#### Do you want to contribute? +* [Check how to make changes to the code base](https://typescript-tdd.github.io/ts-auto-mock/local-development) + ## Authors * [**Vittorio Guerriero**](https://github.com/uittorio) diff --git a/ui/doczrc.js b/ui/doczrc.js index fb53c9fb6..f4c98a499 100644 --- a/ui/doczrc.js +++ b/ui/doczrc.js @@ -19,7 +19,8 @@ export default { { name: 'Types not supported'}, { name: 'Config'}, { name: 'Performance'}, - { name: 'Definitely Typed'} + { name: 'Definitely Typed'}, + { name: 'Local development'} ], repository: "https://github.com/Typescript-TDD/ts-auto-mock" } diff --git a/ui/src/views/local-development.mdx b/ui/src/views/local-development.mdx new file mode 100644 index 000000000..3a4e978e5 --- /dev/null +++ b/ui/src/views/local-development.mdx @@ -0,0 +1,67 @@ +--- +name: Local development +route: /local-development +--- + +# Local development + +If you want to add a new functionality of fix a bug in ts-auto-mock you are in the right place + +## Pre requisite +- node >= 10 +- npm +- the repo cloned locally + +## Install local dependencies +- Make sure you are in the root folder +- run npm install +``` +npm install +``` + +## Build the transformer +- run npm run build +``` +npm run build +``` + +## Make a change +Ts auto mock has multiple modules, each of them has a different meaning and depending of what you are editing you can just re build the specific one +- transformer +- repository +- extension +- merge + +If you are editing the transformer + +``` +npm run build:transformer +``` + +If you are editing anything else +``` +npm run build:modules +``` + +## Test your changes +There are 2 ways to test the effectiveness of your changes +- Use the existing test system + - add a test + - run all the tests + ``` + npm run test + // use npm run test:transformer if you are just editing the transformer + ``` +- use the Playground + - open the file [playground.test.ts](https://github.com/Typescript-TDD/ts-auto-mock/blob/master/test/playground/playground.test.ts) + - make your changes + - run test playground to see the test passing + ``` + npm run test:playground + ``` + - run build playground to see the output of the generate code + ``` + npm run build:playground + ``` + +That's it. \ No newline at end of file From c22c1998c877b7856df99fd999b7c0fe9d025e49 Mon Sep 17 00:00:00 2001 From: Vittorio Guerriero Date: Sat, 11 Apr 2020 11:29:14 +0100 Subject: [PATCH 02/43] build(dependencies): update dependencies (#296) --- .../genericDeclaration/genericDeclarationSupported.ts | 9 +++++++++ src/transformer/mockFactoryCall/mockFactoryCall.ts | 9 ++++++++- .../descriptor/extends/callExpression.test.ts | 10 ++++++++++ test/transformer/descriptor/extends/declaration.ts | 10 ++++++++++ 4 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 test/transformer/descriptor/extends/callExpression.test.ts create mode 100644 test/transformer/descriptor/extends/declaration.ts diff --git a/src/transformer/genericDeclaration/genericDeclarationSupported.ts b/src/transformer/genericDeclaration/genericDeclarationSupported.ts index 58c136db9..2c15bcff8 100644 --- a/src/transformer/genericDeclaration/genericDeclarationSupported.ts +++ b/src/transformer/genericDeclaration/genericDeclarationSupported.ts @@ -2,3 +2,12 @@ import * as ts from 'typescript'; import { InterfaceOrClassDeclaration } from '../scope/scope'; export type GenericDeclarationSupported = InterfaceOrClassDeclaration & ts.TypeAliasDeclaration; + +export function extensionExpressionSupported(expression: ts.LeftHandSideExpression): expression is ts.Identifier { + // This check is to prevent extends function() to die. + // We don't have to support call expression in heritage extends because it will never have generics. + // - You can only use extends with a function that return a constructor (new (...args: unknown[]) => unknown) + // - You cannot pass generics to extends function + // the test is in transformer/descriptor/extends/callExpression.test.ts + return !ts.isCallExpression(expression); +} diff --git a/src/transformer/mockFactoryCall/mockFactoryCall.ts b/src/transformer/mockFactoryCall/mockFactoryCall.ts index 512247866..e6e155b17 100644 --- a/src/transformer/mockFactoryCall/mockFactoryCall.ts +++ b/src/transformer/mockFactoryCall/mockFactoryCall.ts @@ -2,7 +2,10 @@ import * as ts from 'typescript'; import { TypescriptHelper } from '../descriptor/helper/helper'; import { GenericDeclaration } from '../genericDeclaration/genericDeclaration'; import { IGenericDeclaration } from '../genericDeclaration/genericDeclaration.interface'; -import { GenericDeclarationSupported } from '../genericDeclaration/genericDeclarationSupported'; +import { + extensionExpressionSupported, + GenericDeclarationSupported, +} from '../genericDeclaration/genericDeclarationSupported'; import { MockDefiner } from '../mockDefiner/mockDefiner'; import { MockIdentifierGenericParameter } from '../mockIdentifier/mockIdentifier'; import { Scope } from '../scope/scope'; @@ -86,6 +89,10 @@ function addFromDeclarationExtensions(declaration: GenericDeclarationSupported, if (declaration.heritageClauses) { declaration.heritageClauses.forEach((clause: ts.HeritageClause) => { clause.types.forEach((extension: ts.ExpressionWithTypeArguments) => { + if (!extensionExpressionSupported(extension.expression)) { + return; + } + const extensionDeclaration: ts.Declaration = TypescriptHelper.GetDeclarationFromNode(extension.expression); const extensionDeclarationKey: string = MockDefiner.instance.getDeclarationKeyMap(extensionDeclaration); diff --git a/test/transformer/descriptor/extends/callExpression.test.ts b/test/transformer/descriptor/extends/callExpression.test.ts new file mode 100644 index 000000000..a5da17d70 --- /dev/null +++ b/test/transformer/descriptor/extends/callExpression.test.ts @@ -0,0 +1,10 @@ +import { createMock } from 'ts-auto-mock'; +import { Test } from './declaration'; + +describe('extends callExpression', () => { + it('should set all the values from both classes', () => { + const type: Test = createMock(); + expect(type.a).toBe(0); + expect(type.b).toBe(''); + }); +}); diff --git a/test/transformer/descriptor/extends/declaration.ts b/test/transformer/descriptor/extends/declaration.ts new file mode 100644 index 000000000..2336fcbba --- /dev/null +++ b/test/transformer/descriptor/extends/declaration.ts @@ -0,0 +1,10 @@ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +declare function TestFn(): new (...args: any[]) => Test2; + +export class Test extends TestFn() { + public a: number; +} + +class Test2 { + public b: string; +} From 4b5788037e64daee8c676c920cd590dcc7f7bfd6 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 13:00:16 +0100 Subject: [PATCH 03/43] build(pr): add test actions to pull request --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b4733e4f8..2b9dffeae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ name: Test -on: [push] +on: [push, pull_request] jobs: test: From 7e7bd5946357eab629711fec8d3eba7f6a965bd1 Mon Sep 17 00:00:00 2001 From: Snyk bot Date: Sat, 11 Apr 2020 15:04:40 +0300 Subject: [PATCH 04/43] fix: upgrade ttypescript from 1.5.8 to 1.5.10 (#298) Snyk has created this PR to upgrade ttypescript from 1.5.8 to 1.5.10. See this package in NPM: https://www.npmjs.com/package/ttypescript See this project in Snyk: https://app.snyk.io/org/uittorio/project/469ce1c4-28cc-4002-99e7-d3a4bac92a97?utm_source=github&utm_medium=upgrade-pr Co-authored-by: Vittorio Guerriero --- definitelyTypedTests/package-lock.json | 12 ++++++------ definitelyTypedTests/package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/definitelyTypedTests/package-lock.json b/definitelyTypedTests/package-lock.json index cb4951ca0..d36cec4f6 100644 --- a/definitelyTypedTests/package-lock.json +++ b/definitelyTypedTests/package-lock.json @@ -15,17 +15,17 @@ "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" }, "resolve": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.14.1.tgz", - "integrity": "sha512-fn5Wobh4cxbLzuHaE+nphztHy43/b++4M6SsGFC2gB8uYwf0C8LcarfCz1un7UTW8OFQg9iNjZ4xpcFVGebDPg==", + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz", + "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==", "requires": { "path-parse": "^1.0.6" } }, "ttypescript": { - "version": "1.5.8", - "resolved": "https://registry.npmjs.org/ttypescript/-/ttypescript-1.5.8.tgz", - "integrity": "sha512-uXye71UE5iPDOA3mDN9UUtconKGYwjg6m2UgnxVJYyCItE+MliSCZ4kf2asjpJsJQtgPKyu9iAaC4ero1UIbwQ==", + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/ttypescript/-/ttypescript-1.5.10.tgz", + "integrity": "sha512-Hk7TRej1hM+p+Fo+Pyb/XK9pe9CAt3Sh5n5YRutxFS8hUgkh2u1Vd2K40kMcNP3WYhiVFBMqXwM/2E8O95Ep6g==", "requires": { "resolve": "^1.9.0" } diff --git a/definitelyTypedTests/package.json b/definitelyTypedTests/package.json index 4090d29e1..6a7c47240 100644 --- a/definitelyTypedTests/package.json +++ b/definitelyTypedTests/package.json @@ -16,7 +16,7 @@ "license": "ISC", "dependencies": { "dotenv": "^8.2.0", - "ttypescript": "^1.5.8", + "ttypescript": "^1.5.10", "typescript": "^3.8.3" } } From b8335d518e671addde8f981777928c7ca8046c2f Mon Sep 17 00:00:00 2001 From: Snyk bot Date: Sat, 11 Apr 2020 16:12:32 +0300 Subject: [PATCH 05/43] fix: upgrade gatsby-plugin-google-analytics from 2.1.35 to 2.2.2 (#299) Snyk has created this PR to upgrade gatsby-plugin-google-analytics from 2.1.35 to 2.2.2. See this package in NPM: https://www.npmjs.com/package/gatsby-plugin-google-analytics See this project in Snyk: https://app.snyk.io/org/uittorio/project/b5cc6910-03c3-417f-8b7e-aad8f7c14023?utm_source=github&utm_medium=upgrade-pr Co-authored-by: Vittorio Guerriero --- ui/package-lock.json | 36 +++++++++++++++++++++++++----------- ui/package.json | 2 +- 2 files changed, 26 insertions(+), 12 deletions(-) diff --git a/ui/package-lock.json b/ui/package-lock.json index dffd92ab6..0c526f76c 100644 --- a/ui/package-lock.json +++ b/ui/package-lock.json @@ -1160,6 +1160,7 @@ "version": "7.7.7", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.7.7.tgz", "integrity": "sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA==", + "dev": true, "requires": { "regenerator-runtime": "^0.13.2" } @@ -4077,8 +4078,7 @@ "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, "base": { "version": "0.11.2", @@ -4436,7 +4436,6 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -5563,8 +5562,7 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "concat-stream": { "version": "1.6.2", @@ -12160,11 +12158,27 @@ "dev": true }, "gatsby-plugin-google-analytics": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-2.1.35.tgz", - "integrity": "sha512-csZc0LgpMAw0cD27zpGKYHw41veYLLjoxT2guTY1hC3/tMRNZ38XUvO4TKcFGjgobppOg/UuLNF31YzjwJRmpA==", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-2.2.2.tgz", + "integrity": "sha512-at0eUPTyetGuPW1ceISAv58a9fwbwsLX9V5ucwKYShs98Spil/FWviukW0f1A2LUsWOGTiVJYReS7IVVw+FlIA==", "requires": { - "@babel/runtime": "^7.7.6" + "@babel/runtime": "^7.8.7", + "minimatch": "3.0.4" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.9.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.2.tgz", + "integrity": "sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "regenerator-runtime": { + "version": "0.13.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz", + "integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==" + } } }, "gatsby-plugin-manifest": { @@ -16838,7 +16852,6 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, "requires": { "brace-expansion": "^1.1.7" } @@ -20312,7 +20325,8 @@ "regenerator-runtime": { "version": "0.13.3", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", - "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==" + "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==", + "dev": true }, "regenerator-transform": { "version": "0.14.1", diff --git a/ui/package.json b/ui/package.json index 439b67430..97bbffbaf 100644 --- a/ui/package.json +++ b/ui/package.json @@ -37,6 +37,6 @@ "typescript": "^3.7.4" }, "dependencies": { - "gatsby-plugin-google-analytics": "^2.1.35" + "gatsby-plugin-google-analytics": "^2.2.2" } } From 06dd69d720d2b8c839a1dc24e6101a62cbffcfdc Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 14:45:59 +0100 Subject: [PATCH 06/43] build(release): add release test github action --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b3a0ab7c4..129463486 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Release on: release: - types: [published] + types: [edited, published] jobs: release: @@ -19,7 +19,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: npm install, build, and test - run: | - npm install + run: echo Hello world $GITHUB_REF! env: CI: true From 62048690a972e41cea365087ba248e1e548cc254 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 14:50:19 +0100 Subject: [PATCH 07/43] build(release): add release events --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 129463486..e90b9f94e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,9 @@ name: Release on: release: - types: [edited, published] + types: + - edited + - published jobs: release: From 4b282d06da2df6cbf11d1cbb7ffd5c5e5d746ded Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 14:53:22 +0100 Subject: [PATCH 08/43] build(release): update release event --- .github/workflows/release.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e90b9f94e..67cf0b6bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,9 +2,7 @@ name: Release on: release: - types: - - edited - - published + types: [published, created, edited] jobs: release: From 828cd184185a50d52b23d5c5048aba912cdbf2f4 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 15:09:18 +0100 Subject: [PATCH 09/43] build(release): update release event --- .github/workflows/release.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 67cf0b6bf..0034245c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Release on: release: - types: [published, created, edited] + types: [published, edited] jobs: release: @@ -18,7 +18,9 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - name: npm install, build, and test - run: echo Hello world $GITHUB_REF! + - name: lets publish + run: + echo "::set-env name=TAG::$($GITHUB_REF | sed 's|.*\/||')" + echo $TAG env: CI: true From 634f8769edc22aa6fe1625ebf28c26a8cfede721 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 15:38:56 +0100 Subject: [PATCH 10/43] build(release): update release event --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0034245c2..7d4943f71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,8 +19,8 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: lets publish - run: + run: | echo "::set-env name=TAG::$($GITHUB_REF | sed 's|.*\/||')" echo $TAG env: - CI: true + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From 15a65d4bb3ae02e25011e334be7dd4511769b047 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 15:41:41 +0100 Subject: [PATCH 11/43] build(release): update release event --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7d4943f71..a8f538837 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: lets publish run: | - echo "::set-env name=TAG::$($GITHUB_REF | sed 's|.*\/||')" + echo "::set-env name=TAG::$(echo $GITHUB_REF | sed 's|.*\/||')" echo $TAG env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From 20b0d980fb3090e07cded8d635bb783b2365f74f Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 15:45:21 +0100 Subject: [PATCH 12/43] build(release): update release event --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8f538837..bae036ae9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,6 @@ jobs: node-version: ${{ matrix.node-version }} - name: lets publish run: | - echo "::set-env name=TAG::$(echo $GITHUB_REF | sed 's|.*\/||')" - echo $TAG + echo ${GITHUB_REF##*/} env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From 476838df047aa2bd47d9635d35a76f9fa2bc9edb Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 15:47:59 +0100 Subject: [PATCH 13/43] build(release): update release event --- .github/workflows/release.yml | 35 +++++++++++++++++++++++++---------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bae036ae9..3feeb8cb0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,13 +13,28 @@ jobs: node-version: [10.x] steps: - - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - name: lets publish - run: | - echo ${GITHUB_REF##*/} - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + registry-url: https://registry.npmjs.org/ + - name: commit configuration + run: | + git config --global user.name 'typescripttdd' + git config --global user.email 'typescripttdd@gmail.com' + - name: npm install and version + run: | + npm install + npm version ${GITHUB_REF##*/} + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN_TYPESCRIPTTDD }} + - name: Publish + run: | + npm run preparePublish + cd dist + npm publish --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From d098721c1def536b2c69f63cb704e2ae09e26b93 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 15:50:09 +0100 Subject: [PATCH 14/43] build(release): update release event --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3feeb8cb0..f619a6e28 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,9 +20,9 @@ jobs: node-version: ${{ matrix.node-version }} registry-url: https://registry.npmjs.org/ - name: commit configuration - run: | - git config --global user.name 'typescripttdd' - git config --global user.email 'typescripttdd@gmail.com' + run: | + git config --global user.name 'typescripttdd' + git config --global user.email 'typescripttdd@gmail.com' - name: npm install and version run: | npm install From e753e5d6c5c1c78e9a9ec3db534e4490bac416f3 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 15:51:09 +0100 Subject: [PATCH 15/43] build(release): update release event --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f619a6e28..edd444fbe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,9 +28,9 @@ jobs: npm install npm version ${GITHUB_REF##*/} - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN_TYPESCRIPTTDD }} + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN_TYPESCRIPTTDD }} - name: Publish run: | npm run preparePublish From 17ae857fd91d1e0a39cf85688bdb27e5a2c58881 Mon Sep 17 00:00:00 2001 From: typescripttdd Date: Sat, 11 Apr 2020 14:52:32 +0000 Subject: [PATCH 16/43] 1.5.82 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5beb63d48..29a7d2e7c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.8", + "version": "1.5.82", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index cadba2aef..79bbe36b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.8", + "version": "1.5.82", "description": "Typescript transformer to unlock automatic mock creation for interfaces and classes", "scripts": { "build:transformer": "webpack --config config/modules/transformer/webpack.js", From db9d878dfd628b4f1804c647977059f4767942da Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 16:08:22 +0100 Subject: [PATCH 17/43] build(release): update release event --- .github/workflows/release.yml | 8 +++++--- .github/workflows/test.yml | 8 +++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index edd444fbe..aaf440f72 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,6 +35,8 @@ jobs: run: | npm run preparePublish cd dist - npm publish --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Publish if version has been updated + uses: pascalgn/npm-publish-action@4f4bf159e299f65d21cd1cbd96fc5d53228036df + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN_TYPESCRIPTTDD }} + NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2b9dffeae..89a42b808 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,12 @@ name: Test -on: [push, pull_request] +on: + push: + tags-ignore: + - * + pull_request: + tags-ignore: + - * jobs: test: From ba541abf4a28a34d6f9f1e501508418d783d0468 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 16:10:41 +0100 Subject: [PATCH 18/43] build(release): update release event --- .github/workflows/release.yml | 8 ++++---- .github/workflows/test.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aaf440f72..31a4b5299 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: npm run preparePublish cd dist - name: Publish if version has been updated - uses: pascalgn/npm-publish-action@4f4bf159e299f65d21cd1cbd96fc5d53228036df - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN_TYPESCRIPTTDD }} - NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + uses: pascalgn/npm-publish-action@4f4bf159e299f65d21cd1cbd96fc5d53228036df + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN_TYPESCRIPTTDD }} + NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 89a42b808..ee6c51b43 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,10 +3,10 @@ name: Test on: push: tags-ignore: - - * + - '*.*' pull_request: tags-ignore: - - * + - '*.*' jobs: test: From 7bde64cf2d869673a577d2156a262caa4c4ed539 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 16:12:38 +0100 Subject: [PATCH 19/43] build(release): update release event --- .github/workflows/test.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ee6c51b43..2b9dffeae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,12 +1,6 @@ name: Test -on: - push: - tags-ignore: - - '*.*' - pull_request: - tags-ignore: - - '*.*' +on: [push, pull_request] jobs: test: From a79282566b3cfa1a03df4459f674c2fdee6cbd95 Mon Sep 17 00:00:00 2001 From: typescripttdd Date: Sat, 11 Apr 2020 15:14:18 +0000 Subject: [PATCH 20/43] 1.5.83 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 29a7d2e7c..b9ab39a19 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.82", + "version": "1.5.83", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 79bbe36b1..d4e30be4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.82", + "version": "1.5.83", "description": "Typescript transformer to unlock automatic mock creation for interfaces and classes", "scripts": { "build:transformer": "webpack --config config/modules/transformer/webpack.js", From bc55afa5f724c98aa5fc23a651965a4fc2330f42 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 16:19:20 +0100 Subject: [PATCH 21/43] build(release): update release event --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 31a4b5299..44e75de74 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,8 +35,7 @@ jobs: run: | npm run preparePublish cd dist - - name: Publish if version has been updated - uses: pascalgn/npm-publish-action@4f4bf159e299f65d21cd1cbd96fc5d53228036df + npm publish env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN_TYPESCRIPTTDD }} NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + From 7edbc4a4adcd8bd68351f0d4900d99e0940882a2 Mon Sep 17 00:00:00 2001 From: typescripttdd Date: Sat, 11 Apr 2020 15:21:33 +0000 Subject: [PATCH 22/43] 1.5.84 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index b9ab39a19..7dfe5e1b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.83", + "version": "1.5.84", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d4e30be4c..9a5d1c8ae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.83", + "version": "1.5.84", "description": "Typescript transformer to unlock automatic mock creation for interfaces and classes", "scripts": { "build:transformer": "webpack --config config/modules/transformer/webpack.js", From 88fb4c22911902d99fd6a1d9409e5c120a2467a5 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 16:25:55 +0100 Subject: [PATCH 23/43] build(release): update release event --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 44e75de74..481724291 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: run: | npm run preparePublish cd dist - npm publish + npm publish --access public env: NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From e32358e207e3da272e2d750c95742f06b22594ee Mon Sep 17 00:00:00 2001 From: typescripttdd Date: Sat, 11 Apr 2020 15:27:54 +0000 Subject: [PATCH 24/43] 1.5.85 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7dfe5e1b9..bc95b3976 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.84", + "version": "1.5.85", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 9a5d1c8ae..3ee6105be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.84", + "version": "1.5.85", "description": "Typescript transformer to unlock automatic mock creation for interfaces and classes", "scripts": { "build:transformer": "webpack --config config/modules/transformer/webpack.js", From 8b9e046afcf6442829239a00b7bbdc0d11d410df Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 16:36:05 +0100 Subject: [PATCH 25/43] build(release): update release event --- .github/workflows/release.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 481724291..52dd58369 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: node-version: [10.x] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: @@ -31,11 +31,17 @@ jobs: uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN_TYPESCRIPTTDD }} + - name: Register Token + run: | + echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > /home/runner/work/_temp/.npmrc + echo "_auth=$NODE_AUTH_TOKEN" >> /home/runner/work/_temp/.npmrc + echo "email=" >> /home/runner/work/_temp/.npmrc + echo "always-auth=true" >> /home/runner/work/_temp/.npmrc - name: Publish run: | npm run preparePublish cd dist - npm publish --access public + npm publish env: - NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From db874e9f8febb9b507b2f8f82427c70d5ed0aa6c Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 16:39:43 +0100 Subject: [PATCH 26/43] build(release): update release event --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52dd58369..0eb5c7310 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: node-version: [10.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: From 14888667f83b5a70492e90b2f07fa1503ccfef5e Mon Sep 17 00:00:00 2001 From: typescripttdd Date: Sat, 11 Apr 2020 15:41:07 +0000 Subject: [PATCH 27/43] 1.5.87 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index bc95b3976..a31921aa8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.85", + "version": "1.5.87", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3ee6105be..bfa666627 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.85", + "version": "1.5.87", "description": "Typescript transformer to unlock automatic mock creation for interfaces and classes", "scripts": { "build:transformer": "webpack --config config/modules/transformer/webpack.js", From a27d798bb95005c4fee5ef8aa06843b68ab00bb6 Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 16:42:45 +0100 Subject: [PATCH 28/43] build(release): update release event --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0eb5c7310..ffab25d7f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,11 +37,12 @@ jobs: echo "_auth=$NODE_AUTH_TOKEN" >> /home/runner/work/_temp/.npmrc echo "email=" >> /home/runner/work/_temp/.npmrc echo "always-auth=true" >> /home/runner/work/_temp/.npmrc + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Publish run: | npm run preparePublish cd dist npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + From dc532e9e33f4bb43f0ae466ea680a6ed3f4fb6e7 Mon Sep 17 00:00:00 2001 From: typescripttdd Date: Sat, 11 Apr 2020 15:44:14 +0000 Subject: [PATCH 29/43] 1.5.88 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index a31921aa8..216973b98 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.87", + "version": "1.5.88", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index bfa666627..187d723f5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.87", + "version": "1.5.88", "description": "Typescript transformer to unlock automatic mock creation for interfaces and classes", "scripts": { "build:transformer": "webpack --config config/modules/transformer/webpack.js", From f3d8a602fa6c208015f5551684c7cb9106de8130 Mon Sep 17 00:00:00 2001 From: typescripttdd Date: Sat, 11 Apr 2020 15:49:48 +0000 Subject: [PATCH 30/43] 1.5.89 --- CHANGELOG.md | 5 +++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dd717200..116790c96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ + +## [1.5.89](https://github.com/Typescript-TDD/ts-auto-mock/compare/v1.5.88...v1.5.89) (2020-04-11) + + + ## [1.5.8](https://github.com/Typescript-TDD/ts-auto-mock/compare/v1.5.6...v1.5.8) (2020-03-29) diff --git a/package-lock.json b/package-lock.json index 216973b98..fc3cea633 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.88", + "version": "1.5.89", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 187d723f5..16b2afda0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.88", + "version": "1.5.89", "description": "Typescript transformer to unlock automatic mock creation for interfaces and classes", "scripts": { "build:transformer": "webpack --config config/modules/transformer/webpack.js", From 45575e9fb388b78863efdef639d113c062db956d Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 16:53:41 +0100 Subject: [PATCH 31/43] build(release): update release event --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ffab25d7f..83299060c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: run: | echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > /home/runner/work/_temp/.npmrc echo "_auth=$NODE_AUTH_TOKEN" >> /home/runner/work/_temp/.npmrc - echo "email=" >> /home/runner/work/_temp/.npmrc + echo "email=" >> /home/runner/work/_temp/.npmrc echo "always-auth=true" >> /home/runner/work/_temp/.npmrc env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From 9e608c7eeb449802b0f5f6f58fc7ccfd4e555490 Mon Sep 17 00:00:00 2001 From: typescripttdd Date: Sat, 11 Apr 2020 15:54:58 +0000 Subject: [PATCH 32/43] 1.5.891 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index fc3cea633..1bf552e2d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.89", + "version": "1.5.891", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 16b2afda0..d54cb8d22 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.89", + "version": "1.5.891", "description": "Typescript transformer to unlock automatic mock creation for interfaces and classes", "scripts": { "build:transformer": "webpack --config config/modules/transformer/webpack.js", From cbd4310dd78bbe507c877f3babd6f2e5fe95a26f Mon Sep 17 00:00:00 2001 From: typescripttdd Date: Sat, 11 Apr 2020 16:02:38 +0000 Subject: [PATCH 33/43] 1.6.0 --- CHANGELOG.md | 5 +++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 116790c96..94e2f025b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ + +# [1.6.0](https://github.com/Typescript-TDD/ts-auto-mock/compare/v1.5.891...v1.6.0) (2020-04-11) + + + ## [1.5.89](https://github.com/Typescript-TDD/ts-auto-mock/compare/v1.5.88...v1.5.89) (2020-04-11) diff --git a/package-lock.json b/package-lock.json index 1bf552e2d..669ff9a87 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.891", + "version": "1.6.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d54cb8d22..79abf83dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-auto-mock", - "version": "1.5.891", + "version": "1.6.0", "description": "Typescript transformer to unlock automatic mock creation for interfaces and classes", "scripts": { "build:transformer": "webpack --config config/modules/transformer/webpack.js", From be7b7fb779200e3535f67f29140f493d01bb5b6e Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 17:05:08 +0100 Subject: [PATCH 34/43] docs(readme): update title --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa2468dce..ff3668c42 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ mock.details // "{phone: 0} " ## [Roadmap](https://github.com/Typescript-TDD/ts-auto-mock/wiki/Roadmap) -#### Do you want to contribute? +## Do you want to contribute? * [Check how to make changes to the code base](https://typescript-tdd.github.io/ts-auto-mock/local-development) ## Authors From ca430f7abe6ca770e71763be593305439d4da49b Mon Sep 17 00:00:00 2001 From: Vittorio Date: Sat, 11 Apr 2020 17:06:51 +0100 Subject: [PATCH 35/43] build(ci): publish npm package only on published releases --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 83299060c..591eefe82 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Release on: release: - types: [published, edited] + types: [published] jobs: release: From 1327e87839cfe4bff2fe06b2f95509216a358ad3 Mon Sep 17 00:00:00 2001 From: typescripttdd <59508597+typescripttdd@users.noreply.github.com> Date: Sun, 12 Apr 2020 08:51:55 +0100 Subject: [PATCH 36/43] Add Performance data (#302) Co-authored-by: Vittorio Guerriero --- data/performance.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/performance.json b/data/performance.json index f241ae8a2..492152307 100644 --- a/data/performance.json +++ b/data/performance.json @@ -1 +1 @@ -{"master":{"619cbd70cd27b36544bef0baf30de817f975b017":{"2020-01-05T14:48:17.400Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"401883K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.82"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.72"},"emit_time":{"title":"Emit time","value":"3.51"},"total_time":{"title":"Total time","value":"11.01"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"297348K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.84"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.83"},"emit_time":{"title":"Emit time","value":"7.82"},"total_time":{"title":"Total time","value":"15.44"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"488183K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.15"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"5.21"},"emit_time":{"title":"Emit time","value":"14.81"},"total_time":{"title":"Total time","value":"23.09"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"395290K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"2.19"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"4.96"},"emit_time":{"title":"Emit time","value":"11.47"},"total_time":{"title":"Total time","value":"19.56"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"454459K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.55"},"parse_time":{"title":"Parse time","value":"2.09"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"5.03"},"emit_time":{"title":"Emit time","value":"13.53"},"total_time":{"title":"Total time","value":"21.57"}}}]},"9f32c58bdb0a4df353e7b3b128cff0441186ad5b":{"2020-01-13T04:55:19.598Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"403531K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.91"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.75"},"emit_time":{"title":"Emit time","value":"3.50"},"total_time":{"title":"Total time","value":"11.08"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"293146K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"4.81"},"emit_time":{"title":"Emit time","value":"7.88"},"total_time":{"title":"Total time","value":"15.46"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"479336K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.53"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.96"},"check_time":{"title":"Check time","value":"5.25"},"emit_time":{"title":"Emit time","value":"14.85"},"total_time":{"title":"Total time","value":"23.13"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"379998K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"2.06"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.78"},"emit_time":{"title":"Emit time","value":"11.53"},"total_time":{"title":"Total time","value":"19.27"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"456552K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.56"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"5.07"},"emit_time":{"title":"Emit time","value":"13.65"},"total_time":{"title":"Total time","value":"21.70"}}}]},"00d9904b19b5a3f4fadbe22068cb4cde365f904a":{"2020-01-13T05:09:35.499Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"403867K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.39"},"parse_time":{"title":"Parse time","value":"1.64"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.04"},"emit_time":{"title":"Emit time","value":"3.05"},"total_time":{"title":"Total time","value":"9.56"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"298958K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.08"},"emit_time":{"title":"Emit time","value":"6.56"},"total_time":{"title":"Total time","value":"13.03"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"481671K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"12.37"},"total_time":{"title":"Total time","value":"19.37"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"392206K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.80"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"9.83"},"total_time":{"title":"Total time","value":"16.75"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"450953K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"4.31"},"emit_time":{"title":"Emit time","value":"11.48"},"total_time":{"title":"Total time","value":"18.38"}}}]},"0253e95436a2658f39841d108d6e7db464b49895":{"2020-01-14T14:34:18.560Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"400032K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.71"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.42"},"emit_time":{"title":"Emit time","value":"3.24"},"total_time":{"title":"Total time","value":"10.26"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"305919K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.68"},"bind_time":{"title":"Bind time","value":"0.83"},"check_time":{"title":"Check time","value":"4.37"},"emit_time":{"title":"Emit time","value":"7.30"},"total_time":{"title":"Total time","value":"14.19"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"435880K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.02"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"4.89"},"emit_time":{"title":"Emit time","value":"13.23"},"total_time":{"title":"Total time","value":"21.04"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"393002K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.57"},"parse_time":{"title":"Parse time","value":"2.06"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.57"},"emit_time":{"title":"Emit time","value":"11.31"},"total_time":{"title":"Total time","value":"18.73"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"419846K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"2.01"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.65"},"emit_time":{"title":"Emit time","value":"12.23"},"total_time":{"title":"Total time","value":"19.74"}}}]},"6235f37c3b49c4f94bb77fdda7c99546af0284d5":{"2020-01-14T20:10:18.151Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"399135K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.81"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"4.57"},"emit_time":{"title":"Emit time","value":"3.49"},"total_time":{"title":"Total time","value":"10.78"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"302616K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.49"},"emit_time":{"title":"Emit time","value":"7.45"},"total_time":{"title":"Total time","value":"14.65"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"453696K"},"i/o_read":{"title":"I/O read","value":"0.80"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"2.58"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"5.08"},"emit_time":{"title":"Emit time","value":"13.39"},"total_time":{"title":"Total time","value":"21.96"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"395581K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.52"},"parse_time":{"title":"Parse time","value":"1.99"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.68"},"emit_time":{"title":"Emit time","value":"11.12"},"total_time":{"title":"Total time","value":"18.64"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"428262K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.55"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.91"},"emit_time":{"title":"Emit time","value":"12.47"},"total_time":{"title":"Total time","value":"20.34"}}}]},"ad76471504f18882604cf83c76904119870c2954":{"2020-01-16T08:01:05.488Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5087"},"lines":{"title":"Lines","value":"111494"},"nodes":{"title":"Nodes","value":"407644"},"identifiers":{"title":"Identifiers","value":"127326"},"symbols":{"title":"Symbols","value":"102438"},"types":{"title":"Types","value":"37186"},"memory_used":{"title":"Memory used","value":"399261K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.96"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.83"},"emit_time":{"title":"Emit time","value":"3.61"},"total_time":{"title":"Total time","value":"11.35"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5087"},"lines":{"title":"Lines","value":"111494"},"nodes":{"title":"Nodes","value":"407644"},"identifiers":{"title":"Identifiers","value":"127326"},"symbols":{"title":"Symbols","value":"102438"},"types":{"title":"Types","value":"37186"},"memory_used":{"title":"Memory used","value":"308309K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.88"},"bind_time":{"title":"Bind time","value":"0.97"},"check_time":{"title":"Check time","value":"4.85"},"emit_time":{"title":"Emit time","value":"7.91"},"total_time":{"title":"Total time","value":"15.61"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"111510"},"nodes":{"title":"Nodes","value":"437800"},"identifiers":{"title":"Identifiers","value":"137374"},"symbols":{"title":"Symbols","value":"102473"},"types":{"title":"Types","value":"32214"},"memory_used":{"title":"Memory used","value":"452988K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.20"},"bind_time":{"title":"Bind time","value":"0.97"},"check_time":{"title":"Check time","value":"5.35"},"emit_time":{"title":"Emit time","value":"13.87"},"total_time":{"title":"Total time","value":"22.39"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"96510"},"nodes":{"title":"Nodes","value":"442800"},"identifiers":{"title":"Identifiers","value":"132374"},"symbols":{"title":"Symbols","value":"92474"},"types":{"title":"Types","value":"27214"},"memory_used":{"title":"Memory used","value":"377474K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.56"},"parse_time":{"title":"Parse time","value":"2.21"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"5.13"},"emit_time":{"title":"Emit time","value":"12.21"},"total_time":{"title":"Total time","value":"20.49"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"104010"},"nodes":{"title":"Nodes","value":"440300"},"identifiers":{"title":"Identifiers","value":"134874"},"symbols":{"title":"Symbols","value":"97474"},"types":{"title":"Types","value":"29714"},"memory_used":{"title":"Memory used","value":"429832K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.60"},"parse_time":{"title":"Parse time","value":"2.15"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"5.17"},"emit_time":{"title":"Emit time","value":"13.34"},"total_time":{"title":"Total time","value":"21.60"}}}]},"385665f2e325c26d39fa961d3222f244d19e036d":{"2020-01-18T08:35:50.971Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"228162K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.69"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"3.43"},"total_time":{"title":"Total time","value":"10.33"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"296383K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.71"},"bind_time":{"title":"Bind time","value":"0.87"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"7.05"},"total_time":{"title":"Total time","value":"13.98"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"455376K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.53"},"parse_time":{"title":"Parse time","value":"1.89"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.65"},"emit_time":{"title":"Emit time","value":"12.47"},"total_time":{"title":"Total time","value":"19.87"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"380922K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.91"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.51"},"emit_time":{"title":"Emit time","value":"10.35"},"total_time":{"title":"Total time","value":"17.61"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"432654K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.97"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.60"},"emit_time":{"title":"Emit time","value":"11.86"},"total_time":{"title":"Total time","value":"19.27"}}}]},"2d1c34ab401dbb38aca59a8ad584468a81979b73":{"2020-01-29T12:11:34.200Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"390619K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.36"},"parse_time":{"title":"Parse time","value":"2.13"},"bind_time":{"title":"Bind time","value":"0.70"},"check_time":{"title":"Check time","value":"3.76"},"emit_time":{"title":"Emit time","value":"2.94"},"total_time":{"title":"Total time","value":"9.54"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"310463K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"3.85"},"emit_time":{"title":"Emit time","value":"6.43"},"total_time":{"title":"Total time","value":"12.74"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"446160K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.82"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.09"},"emit_time":{"title":"Emit time","value":"11.37"},"total_time":{"title":"Total time","value":"18.12"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"364299K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.77"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"3.77"},"emit_time":{"title":"Emit time","value":"9.65"},"total_time":{"title":"Total time","value":"15.99"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"421232K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.77"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.07"},"emit_time":{"title":"Emit time","value":"10.93"},"total_time":{"title":"Total time","value":"17.58"}}}]},"0b376999d2028ded4494d243781f731141bb5f8c":{"2020-01-30T20:55:27.841Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"404296K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.49"},"bind_time":{"title":"Bind time","value":"0.78"},"check_time":{"title":"Check time","value":"3.50"},"emit_time":{"title":"Emit time","value":"2.89"},"total_time":{"title":"Total time","value":"8.66"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"292203K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.49"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"3.59"},"emit_time":{"title":"Emit time","value":"6.14"},"total_time":{"title":"Total time","value":"12.01"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"450465K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.66"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"3.78"},"emit_time":{"title":"Emit time","value":"10.97"},"total_time":{"title":"Total time","value":"17.21"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"363721K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"3.58"},"emit_time":{"title":"Emit time","value":"9.37"},"total_time":{"title":"Total time","value":"15.35"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"411516K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.70"},"bind_time":{"title":"Bind time","value":"0.78"},"check_time":{"title":"Check time","value":"3.77"},"emit_time":{"title":"Emit time","value":"10.41"},"total_time":{"title":"Total time","value":"16.67"}}}]},"4301c186734ec0aca663bd6036f2e3f85ea9012d":{"2020-01-31T18:53:43.631Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"406001K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.19"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"9.81"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"297999K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"6.90"},"total_time":{"title":"Total time","value":"13.73"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"448021K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.53"},"emit_time":{"title":"Emit time","value":"12.22"},"total_time":{"title":"Total time","value":"19.53"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"375400K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"4.36"},"emit_time":{"title":"Emit time","value":"10.50"},"total_time":{"title":"Total time","value":"17.48"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"436122K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.49"},"emit_time":{"title":"Emit time","value":"11.61"},"total_time":{"title":"Total time","value":"18.76"}}}]},"27ae136b8aa12caa15557ba38cb95cec05ea8c59":{"2020-02-02T12:31:03.561Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"391088K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.33"},"parse_time":{"title":"Parse time","value":"1.44"},"bind_time":{"title":"Bind time","value":"0.66"},"check_time":{"title":"Check time","value":"3.42"},"emit_time":{"title":"Emit time","value":"2.69"},"total_time":{"title":"Total time","value":"8.21"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"296355K"},"i/o_read":{"title":"I/O read","value":"0.19"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.42"},"bind_time":{"title":"Bind time","value":"0.66"},"check_time":{"title":"Check time","value":"3.51"},"emit_time":{"title":"Emit time","value":"5.93"},"total_time":{"title":"Total time","value":"11.53"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"458632K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.77"},"check_time":{"title":"Check time","value":"3.61"},"emit_time":{"title":"Emit time","value":"10.85"},"total_time":{"title":"Total time","value":"16.83"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"369084K"},"i/o_read":{"title":"I/O read","value":"0.17"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.56"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.53"},"emit_time":{"title":"Emit time","value":"9.06"},"total_time":{"title":"Total time","value":"14.90"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"404199K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.63"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.71"},"emit_time":{"title":"Emit time","value":"9.97"},"total_time":{"title":"Total time","value":"16.06"}}}]},"8d7ec18d368e07458c5ead29be61e855fd359767":{"2020-02-02T12:46:32.646Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"411123K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.83"},"check_time":{"title":"Check time","value":"4.08"},"emit_time":{"title":"Emit time","value":"3.06"},"total_time":{"title":"Total time","value":"9.58"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"306243K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.54"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.12"},"emit_time":{"title":"Emit time","value":"6.86"},"total_time":{"title":"Total time","value":"13.36"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"459621K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"11.69"},"total_time":{"title":"Total time","value":"18.75"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"368503K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.74"},"check_time":{"title":"Check time","value":"4.18"},"emit_time":{"title":"Emit time","value":"10.08"},"total_time":{"title":"Total time","value":"16.83"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"413154K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.40"},"emit_time":{"title":"Emit time","value":"11.47"},"total_time":{"title":"Total time","value":"18.51"}}}]},"37b4b7e901df103158c45ce01152587f4b81febf":{"2020-02-05T17:47:58.889Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"411964K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.64"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"3.89"},"emit_time":{"title":"Emit time","value":"3.10"},"total_time":{"title":"Total time","value":"9.39"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"302205K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"3.82"},"emit_time":{"title":"Emit time","value":"6.62"},"total_time":{"title":"Total time","value":"12.90"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"448624K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.24"},"emit_time":{"title":"Emit time","value":"12.02"},"total_time":{"title":"Total time","value":"18.91"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"382471K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"3.89"},"emit_time":{"title":"Emit time","value":"10.45"},"total_time":{"title":"Total time","value":"17.00"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"386448K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.52"},"parse_time":{"title":"Parse time","value":"1.89"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"4.15"},"emit_time":{"title":"Emit time","value":"11.40"},"total_time":{"title":"Total time","value":"18.32"}}}]},"3006c84bee945dc86f1faae9cbd2e960377c6be3":{"2020-02-08T20:55:16.243Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"392240K"},"i/o_read":{"title":"I/O read","value":"0.15"},"i/o_write":{"title":"I/O write","value":"0.34"},"parse_time":{"title":"Parse time","value":"1.20"},"bind_time":{"title":"Bind time","value":"0.55"},"check_time":{"title":"Check time","value":"2.95"},"emit_time":{"title":"Emit time","value":"2.38"},"total_time":{"title":"Total time","value":"7.08"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"335503K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.35"},"parse_time":{"title":"Parse time","value":"1.23"},"bind_time":{"title":"Bind time","value":"0.55"},"check_time":{"title":"Check time","value":"3.08"},"emit_time":{"title":"Emit time","value":"5.29"},"total_time":{"title":"Total time","value":"10.15"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"439512K"},"i/o_read":{"title":"I/O read","value":"0.15"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.40"},"bind_time":{"title":"Bind time","value":"0.65"},"check_time":{"title":"Check time","value":"3.17"},"emit_time":{"title":"Emit time","value":"9.14"},"total_time":{"title":"Total time","value":"14.36"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"365703K"},"i/o_read":{"title":"I/O read","value":"0.16"},"i/o_write":{"title":"I/O write","value":"0.35"},"parse_time":{"title":"Parse time","value":"1.39"},"bind_time":{"title":"Bind time","value":"0.64"},"check_time":{"title":"Check time","value":"2.98"},"emit_time":{"title":"Emit time","value":"7.80"},"total_time":{"title":"Total time","value":"12.81"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"400097K"},"i/o_read":{"title":"I/O read","value":"0.16"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.36"},"bind_time":{"title":"Bind time","value":"0.68"},"check_time":{"title":"Check time","value":"3.14"},"emit_time":{"title":"Emit time","value":"8.68"},"total_time":{"title":"Total time","value":"13.86"}}}]},"446c0907bb8212d3f29548828f751e31eb3ad91e":{"2020-02-09T14:58:26.162Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"396288K"},"i/o_read":{"title":"I/O read","value":"0.19"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.69"},"check_time":{"title":"Check time","value":"3.85"},"emit_time":{"title":"Emit time","value":"2.97"},"total_time":{"title":"Total time","value":"9.10"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"298321K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.56"},"bind_time":{"title":"Bind time","value":"0.72"},"check_time":{"title":"Check time","value":"3.87"},"emit_time":{"title":"Emit time","value":"6.55"},"total_time":{"title":"Total time","value":"12.70"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"447665K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.76"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"3.99"},"emit_time":{"title":"Emit time","value":"11.63"},"total_time":{"title":"Total time","value":"18.23"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"375466K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"3.83"},"emit_time":{"title":"Emit time","value":"10.01"},"total_time":{"title":"Total time","value":"16.47"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"406424K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.81"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.05"},"emit_time":{"title":"Emit time","value":"11.25"},"total_time":{"title":"Total time","value":"17.95"}}}]},"627b9bccf77b98229d5536da5620dfb47505c728":{"2020-02-16T14:37:03.564Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"400944K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.75"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.25"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"10.00"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"307241K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.57"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.07"},"emit_time":{"title":"Emit time","value":"7.00"},"total_time":{"title":"Total time","value":"13.50"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"451952K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.95"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.60"},"emit_time":{"title":"Emit time","value":"12.66"},"total_time":{"title":"Total time","value":"20.13"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"373711K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.93"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"4.48"},"emit_time":{"title":"Emit time","value":"10.35"},"total_time":{"title":"Total time","value":"17.70"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"434324K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.43"},"emit_time":{"title":"Emit time","value":"11.60"},"total_time":{"title":"Total time","value":"18.75"}}}]},"2a18bed1925866d664b57e8f1369cfcff1d56953":{"2020-03-01T12:49:15.678Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"390627K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.75"},"bind_time":{"title":"Bind time","value":"0.72"},"check_time":{"title":"Check time","value":"4.42"},"emit_time":{"title":"Emit time","value":"3.16"},"total_time":{"title":"Total time","value":"10.04"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"450722K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.68"},"bind_time":{"title":"Bind time","value":"0.67"},"check_time":{"title":"Check time","value":"4.50"},"emit_time":{"title":"Emit time","value":"3.44"},"total_time":{"title":"Total time","value":"10.29"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"281370K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.56"},"emit_time":{"title":"Emit time","value":"4.75"},"total_time":{"title":"Total time","value":"11.90"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"282855K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.87"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.30"},"emit_time":{"title":"Emit time","value":"4.86"},"total_time":{"title":"Total time","value":"11.85"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"285858K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.86"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.68"},"emit_time":{"title":"Emit time","value":"5.08"},"total_time":{"title":"Total time","value":"12.42"}}}]},"cbe2b88bef120261c98af01564da59a9c93860e6":{"2020-03-28T19:50:14.554Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"407750"},"identifiers":{"title":"Identifiers","value":"127353"},"symbols":{"title":"Symbols","value":"102527"},"types":{"title":"Types","value":"37227"},"memory_used":{"title":"Memory used","value":"409652K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.59"},"bind_time":{"title":"Bind time","value":"0.73"},"check_time":{"title":"Check time","value":"3.80"},"emit_time":{"title":"Emit time","value":"2.78"},"total_time":{"title":"Total time","value":"8.90"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"407750"},"identifiers":{"title":"Identifiers","value":"127353"},"symbols":{"title":"Symbols","value":"102527"},"types":{"title":"Types","value":"37227"},"memory_used":{"title":"Memory used","value":"258517K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.54"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.70"},"emit_time":{"title":"Emit time","value":"3.27"},"total_time":{"title":"Total time","value":"9.24"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112009"},"nodes":{"title":"Nodes","value":"437906"},"identifiers":{"title":"Identifiers","value":"137401"},"symbols":{"title":"Symbols","value":"102562"},"types":{"title":"Types","value":"32255"},"memory_used":{"title":"Memory used","value":"270887K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.63"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"4.17"},"emit_time":{"title":"Emit time","value":"4.34"},"total_time":{"title":"Total time","value":"10.90"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97009"},"nodes":{"title":"Nodes","value":"442906"},"identifiers":{"title":"Identifiers","value":"132401"},"symbols":{"title":"Symbols","value":"92563"},"types":{"title":"Types","value":"27255"},"memory_used":{"title":"Memory used","value":"291067K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.70"},"check_time":{"title":"Check time","value":"3.91"},"emit_time":{"title":"Emit time","value":"4.34"},"total_time":{"title":"Total time","value":"10.60"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104509"},"nodes":{"title":"Nodes","value":"440406"},"identifiers":{"title":"Identifiers","value":"134901"},"symbols":{"title":"Symbols","value":"97563"},"types":{"title":"Types","value":"29755"},"memory_used":{"title":"Memory used","value":"276174K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.16"},"emit_time":{"title":"Emit time","value":"4.44"},"total_time":{"title":"Total time","value":"11.05"}}}]}}} \ No newline at end of file +{"master":{"619cbd70cd27b36544bef0baf30de817f975b017":{"2020-01-05T14:48:17.400Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"401883K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.82"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.72"},"emit_time":{"title":"Emit time","value":"3.51"},"total_time":{"title":"Total time","value":"11.01"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"297348K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.84"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.83"},"emit_time":{"title":"Emit time","value":"7.82"},"total_time":{"title":"Total time","value":"15.44"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"488183K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.15"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"5.21"},"emit_time":{"title":"Emit time","value":"14.81"},"total_time":{"title":"Total time","value":"23.09"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"395290K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"2.19"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"4.96"},"emit_time":{"title":"Emit time","value":"11.47"},"total_time":{"title":"Total time","value":"19.56"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"454459K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.55"},"parse_time":{"title":"Parse time","value":"2.09"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"5.03"},"emit_time":{"title":"Emit time","value":"13.53"},"total_time":{"title":"Total time","value":"21.57"}}}]},"9f32c58bdb0a4df353e7b3b128cff0441186ad5b":{"2020-01-13T04:55:19.598Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"403531K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.91"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.75"},"emit_time":{"title":"Emit time","value":"3.50"},"total_time":{"title":"Total time","value":"11.08"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"293146K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"4.81"},"emit_time":{"title":"Emit time","value":"7.88"},"total_time":{"title":"Total time","value":"15.46"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"479336K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.53"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.96"},"check_time":{"title":"Check time","value":"5.25"},"emit_time":{"title":"Emit time","value":"14.85"},"total_time":{"title":"Total time","value":"23.13"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"379998K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"2.06"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.78"},"emit_time":{"title":"Emit time","value":"11.53"},"total_time":{"title":"Total time","value":"19.27"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"456552K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.56"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"5.07"},"emit_time":{"title":"Emit time","value":"13.65"},"total_time":{"title":"Total time","value":"21.70"}}}]},"00d9904b19b5a3f4fadbe22068cb4cde365f904a":{"2020-01-13T05:09:35.499Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"403867K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.39"},"parse_time":{"title":"Parse time","value":"1.64"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.04"},"emit_time":{"title":"Emit time","value":"3.05"},"total_time":{"title":"Total time","value":"9.56"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"298958K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.08"},"emit_time":{"title":"Emit time","value":"6.56"},"total_time":{"title":"Total time","value":"13.03"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"481671K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"12.37"},"total_time":{"title":"Total time","value":"19.37"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"392206K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.80"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"9.83"},"total_time":{"title":"Total time","value":"16.75"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"450953K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"4.31"},"emit_time":{"title":"Emit time","value":"11.48"},"total_time":{"title":"Total time","value":"18.38"}}}]},"0253e95436a2658f39841d108d6e7db464b49895":{"2020-01-14T14:34:18.560Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"400032K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.71"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.42"},"emit_time":{"title":"Emit time","value":"3.24"},"total_time":{"title":"Total time","value":"10.26"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"305919K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.68"},"bind_time":{"title":"Bind time","value":"0.83"},"check_time":{"title":"Check time","value":"4.37"},"emit_time":{"title":"Emit time","value":"7.30"},"total_time":{"title":"Total time","value":"14.19"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"435880K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.02"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"4.89"},"emit_time":{"title":"Emit time","value":"13.23"},"total_time":{"title":"Total time","value":"21.04"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"393002K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.57"},"parse_time":{"title":"Parse time","value":"2.06"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.57"},"emit_time":{"title":"Emit time","value":"11.31"},"total_time":{"title":"Total time","value":"18.73"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"419846K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"2.01"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.65"},"emit_time":{"title":"Emit time","value":"12.23"},"total_time":{"title":"Total time","value":"19.74"}}}]},"6235f37c3b49c4f94bb77fdda7c99546af0284d5":{"2020-01-14T20:10:18.151Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"399135K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.81"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"4.57"},"emit_time":{"title":"Emit time","value":"3.49"},"total_time":{"title":"Total time","value":"10.78"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"302616K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.49"},"emit_time":{"title":"Emit time","value":"7.45"},"total_time":{"title":"Total time","value":"14.65"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"453696K"},"i/o_read":{"title":"I/O read","value":"0.80"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"2.58"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"5.08"},"emit_time":{"title":"Emit time","value":"13.39"},"total_time":{"title":"Total time","value":"21.96"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"395581K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.52"},"parse_time":{"title":"Parse time","value":"1.99"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.68"},"emit_time":{"title":"Emit time","value":"11.12"},"total_time":{"title":"Total time","value":"18.64"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"428262K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.55"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.91"},"emit_time":{"title":"Emit time","value":"12.47"},"total_time":{"title":"Total time","value":"20.34"}}}]},"ad76471504f18882604cf83c76904119870c2954":{"2020-01-16T08:01:05.488Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5087"},"lines":{"title":"Lines","value":"111494"},"nodes":{"title":"Nodes","value":"407644"},"identifiers":{"title":"Identifiers","value":"127326"},"symbols":{"title":"Symbols","value":"102438"},"types":{"title":"Types","value":"37186"},"memory_used":{"title":"Memory used","value":"399261K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.96"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.83"},"emit_time":{"title":"Emit time","value":"3.61"},"total_time":{"title":"Total time","value":"11.35"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5087"},"lines":{"title":"Lines","value":"111494"},"nodes":{"title":"Nodes","value":"407644"},"identifiers":{"title":"Identifiers","value":"127326"},"symbols":{"title":"Symbols","value":"102438"},"types":{"title":"Types","value":"37186"},"memory_used":{"title":"Memory used","value":"308309K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.88"},"bind_time":{"title":"Bind time","value":"0.97"},"check_time":{"title":"Check time","value":"4.85"},"emit_time":{"title":"Emit time","value":"7.91"},"total_time":{"title":"Total time","value":"15.61"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"111510"},"nodes":{"title":"Nodes","value":"437800"},"identifiers":{"title":"Identifiers","value":"137374"},"symbols":{"title":"Symbols","value":"102473"},"types":{"title":"Types","value":"32214"},"memory_used":{"title":"Memory used","value":"452988K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.20"},"bind_time":{"title":"Bind time","value":"0.97"},"check_time":{"title":"Check time","value":"5.35"},"emit_time":{"title":"Emit time","value":"13.87"},"total_time":{"title":"Total time","value":"22.39"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"96510"},"nodes":{"title":"Nodes","value":"442800"},"identifiers":{"title":"Identifiers","value":"132374"},"symbols":{"title":"Symbols","value":"92474"},"types":{"title":"Types","value":"27214"},"memory_used":{"title":"Memory used","value":"377474K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.56"},"parse_time":{"title":"Parse time","value":"2.21"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"5.13"},"emit_time":{"title":"Emit time","value":"12.21"},"total_time":{"title":"Total time","value":"20.49"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"104010"},"nodes":{"title":"Nodes","value":"440300"},"identifiers":{"title":"Identifiers","value":"134874"},"symbols":{"title":"Symbols","value":"97474"},"types":{"title":"Types","value":"29714"},"memory_used":{"title":"Memory used","value":"429832K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.60"},"parse_time":{"title":"Parse time","value":"2.15"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"5.17"},"emit_time":{"title":"Emit time","value":"13.34"},"total_time":{"title":"Total time","value":"21.60"}}}]},"385665f2e325c26d39fa961d3222f244d19e036d":{"2020-01-18T08:35:50.971Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"228162K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.69"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"3.43"},"total_time":{"title":"Total time","value":"10.33"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"296383K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.71"},"bind_time":{"title":"Bind time","value":"0.87"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"7.05"},"total_time":{"title":"Total time","value":"13.98"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"455376K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.53"},"parse_time":{"title":"Parse time","value":"1.89"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.65"},"emit_time":{"title":"Emit time","value":"12.47"},"total_time":{"title":"Total time","value":"19.87"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"380922K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.91"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.51"},"emit_time":{"title":"Emit time","value":"10.35"},"total_time":{"title":"Total time","value":"17.61"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"432654K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.97"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.60"},"emit_time":{"title":"Emit time","value":"11.86"},"total_time":{"title":"Total time","value":"19.27"}}}]},"2d1c34ab401dbb38aca59a8ad584468a81979b73":{"2020-01-29T12:11:34.200Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"390619K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.36"},"parse_time":{"title":"Parse time","value":"2.13"},"bind_time":{"title":"Bind time","value":"0.70"},"check_time":{"title":"Check time","value":"3.76"},"emit_time":{"title":"Emit time","value":"2.94"},"total_time":{"title":"Total time","value":"9.54"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"310463K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"3.85"},"emit_time":{"title":"Emit time","value":"6.43"},"total_time":{"title":"Total time","value":"12.74"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"446160K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.82"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.09"},"emit_time":{"title":"Emit time","value":"11.37"},"total_time":{"title":"Total time","value":"18.12"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"364299K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.77"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"3.77"},"emit_time":{"title":"Emit time","value":"9.65"},"total_time":{"title":"Total time","value":"15.99"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"421232K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.77"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.07"},"emit_time":{"title":"Emit time","value":"10.93"},"total_time":{"title":"Total time","value":"17.58"}}}]},"0b376999d2028ded4494d243781f731141bb5f8c":{"2020-01-30T20:55:27.841Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"404296K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.49"},"bind_time":{"title":"Bind time","value":"0.78"},"check_time":{"title":"Check time","value":"3.50"},"emit_time":{"title":"Emit time","value":"2.89"},"total_time":{"title":"Total time","value":"8.66"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"292203K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.49"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"3.59"},"emit_time":{"title":"Emit time","value":"6.14"},"total_time":{"title":"Total time","value":"12.01"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"450465K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.66"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"3.78"},"emit_time":{"title":"Emit time","value":"10.97"},"total_time":{"title":"Total time","value":"17.21"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"363721K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"3.58"},"emit_time":{"title":"Emit time","value":"9.37"},"total_time":{"title":"Total time","value":"15.35"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"411516K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.70"},"bind_time":{"title":"Bind time","value":"0.78"},"check_time":{"title":"Check time","value":"3.77"},"emit_time":{"title":"Emit time","value":"10.41"},"total_time":{"title":"Total time","value":"16.67"}}}]},"4301c186734ec0aca663bd6036f2e3f85ea9012d":{"2020-01-31T18:53:43.631Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"406001K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.19"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"9.81"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"297999K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"6.90"},"total_time":{"title":"Total time","value":"13.73"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"448021K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.53"},"emit_time":{"title":"Emit time","value":"12.22"},"total_time":{"title":"Total time","value":"19.53"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"375400K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"4.36"},"emit_time":{"title":"Emit time","value":"10.50"},"total_time":{"title":"Total time","value":"17.48"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"436122K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.49"},"emit_time":{"title":"Emit time","value":"11.61"},"total_time":{"title":"Total time","value":"18.76"}}}]},"27ae136b8aa12caa15557ba38cb95cec05ea8c59":{"2020-02-02T12:31:03.561Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"391088K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.33"},"parse_time":{"title":"Parse time","value":"1.44"},"bind_time":{"title":"Bind time","value":"0.66"},"check_time":{"title":"Check time","value":"3.42"},"emit_time":{"title":"Emit time","value":"2.69"},"total_time":{"title":"Total time","value":"8.21"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"296355K"},"i/o_read":{"title":"I/O read","value":"0.19"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.42"},"bind_time":{"title":"Bind time","value":"0.66"},"check_time":{"title":"Check time","value":"3.51"},"emit_time":{"title":"Emit time","value":"5.93"},"total_time":{"title":"Total time","value":"11.53"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"458632K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.77"},"check_time":{"title":"Check time","value":"3.61"},"emit_time":{"title":"Emit time","value":"10.85"},"total_time":{"title":"Total time","value":"16.83"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"369084K"},"i/o_read":{"title":"I/O read","value":"0.17"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.56"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.53"},"emit_time":{"title":"Emit time","value":"9.06"},"total_time":{"title":"Total time","value":"14.90"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"404199K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.63"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.71"},"emit_time":{"title":"Emit time","value":"9.97"},"total_time":{"title":"Total time","value":"16.06"}}}]},"8d7ec18d368e07458c5ead29be61e855fd359767":{"2020-02-02T12:46:32.646Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"411123K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.83"},"check_time":{"title":"Check time","value":"4.08"},"emit_time":{"title":"Emit time","value":"3.06"},"total_time":{"title":"Total time","value":"9.58"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"306243K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.54"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.12"},"emit_time":{"title":"Emit time","value":"6.86"},"total_time":{"title":"Total time","value":"13.36"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"459621K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"11.69"},"total_time":{"title":"Total time","value":"18.75"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"368503K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.74"},"check_time":{"title":"Check time","value":"4.18"},"emit_time":{"title":"Emit time","value":"10.08"},"total_time":{"title":"Total time","value":"16.83"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"413154K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.40"},"emit_time":{"title":"Emit time","value":"11.47"},"total_time":{"title":"Total time","value":"18.51"}}}]},"37b4b7e901df103158c45ce01152587f4b81febf":{"2020-02-05T17:47:58.889Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"411964K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.64"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"3.89"},"emit_time":{"title":"Emit time","value":"3.10"},"total_time":{"title":"Total time","value":"9.39"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"302205K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"3.82"},"emit_time":{"title":"Emit time","value":"6.62"},"total_time":{"title":"Total time","value":"12.90"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"448624K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.24"},"emit_time":{"title":"Emit time","value":"12.02"},"total_time":{"title":"Total time","value":"18.91"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"382471K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"3.89"},"emit_time":{"title":"Emit time","value":"10.45"},"total_time":{"title":"Total time","value":"17.00"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"386448K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.52"},"parse_time":{"title":"Parse time","value":"1.89"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"4.15"},"emit_time":{"title":"Emit time","value":"11.40"},"total_time":{"title":"Total time","value":"18.32"}}}]},"3006c84bee945dc86f1faae9cbd2e960377c6be3":{"2020-02-08T20:55:16.243Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"392240K"},"i/o_read":{"title":"I/O read","value":"0.15"},"i/o_write":{"title":"I/O write","value":"0.34"},"parse_time":{"title":"Parse time","value":"1.20"},"bind_time":{"title":"Bind time","value":"0.55"},"check_time":{"title":"Check time","value":"2.95"},"emit_time":{"title":"Emit time","value":"2.38"},"total_time":{"title":"Total time","value":"7.08"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"335503K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.35"},"parse_time":{"title":"Parse time","value":"1.23"},"bind_time":{"title":"Bind time","value":"0.55"},"check_time":{"title":"Check time","value":"3.08"},"emit_time":{"title":"Emit time","value":"5.29"},"total_time":{"title":"Total time","value":"10.15"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"439512K"},"i/o_read":{"title":"I/O read","value":"0.15"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.40"},"bind_time":{"title":"Bind time","value":"0.65"},"check_time":{"title":"Check time","value":"3.17"},"emit_time":{"title":"Emit time","value":"9.14"},"total_time":{"title":"Total time","value":"14.36"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"365703K"},"i/o_read":{"title":"I/O read","value":"0.16"},"i/o_write":{"title":"I/O write","value":"0.35"},"parse_time":{"title":"Parse time","value":"1.39"},"bind_time":{"title":"Bind time","value":"0.64"},"check_time":{"title":"Check time","value":"2.98"},"emit_time":{"title":"Emit time","value":"7.80"},"total_time":{"title":"Total time","value":"12.81"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"400097K"},"i/o_read":{"title":"I/O read","value":"0.16"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.36"},"bind_time":{"title":"Bind time","value":"0.68"},"check_time":{"title":"Check time","value":"3.14"},"emit_time":{"title":"Emit time","value":"8.68"},"total_time":{"title":"Total time","value":"13.86"}}}]},"446c0907bb8212d3f29548828f751e31eb3ad91e":{"2020-02-09T14:58:26.162Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"396288K"},"i/o_read":{"title":"I/O read","value":"0.19"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.69"},"check_time":{"title":"Check time","value":"3.85"},"emit_time":{"title":"Emit time","value":"2.97"},"total_time":{"title":"Total time","value":"9.10"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"298321K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.56"},"bind_time":{"title":"Bind time","value":"0.72"},"check_time":{"title":"Check time","value":"3.87"},"emit_time":{"title":"Emit time","value":"6.55"},"total_time":{"title":"Total time","value":"12.70"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"447665K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.76"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"3.99"},"emit_time":{"title":"Emit time","value":"11.63"},"total_time":{"title":"Total time","value":"18.23"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"375466K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"3.83"},"emit_time":{"title":"Emit time","value":"10.01"},"total_time":{"title":"Total time","value":"16.47"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"406424K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.81"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.05"},"emit_time":{"title":"Emit time","value":"11.25"},"total_time":{"title":"Total time","value":"17.95"}}}]},"627b9bccf77b98229d5536da5620dfb47505c728":{"2020-02-16T14:37:03.564Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"400944K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.75"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.25"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"10.00"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"307241K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.57"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.07"},"emit_time":{"title":"Emit time","value":"7.00"},"total_time":{"title":"Total time","value":"13.50"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"451952K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.95"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.60"},"emit_time":{"title":"Emit time","value":"12.66"},"total_time":{"title":"Total time","value":"20.13"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"373711K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.93"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"4.48"},"emit_time":{"title":"Emit time","value":"10.35"},"total_time":{"title":"Total time","value":"17.70"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"434324K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.43"},"emit_time":{"title":"Emit time","value":"11.60"},"total_time":{"title":"Total time","value":"18.75"}}}]},"2a18bed1925866d664b57e8f1369cfcff1d56953":{"2020-03-01T12:49:15.678Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"390627K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.75"},"bind_time":{"title":"Bind time","value":"0.72"},"check_time":{"title":"Check time","value":"4.42"},"emit_time":{"title":"Emit time","value":"3.16"},"total_time":{"title":"Total time","value":"10.04"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"450722K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.68"},"bind_time":{"title":"Bind time","value":"0.67"},"check_time":{"title":"Check time","value":"4.50"},"emit_time":{"title":"Emit time","value":"3.44"},"total_time":{"title":"Total time","value":"10.29"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"281370K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.56"},"emit_time":{"title":"Emit time","value":"4.75"},"total_time":{"title":"Total time","value":"11.90"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"282855K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.87"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.30"},"emit_time":{"title":"Emit time","value":"4.86"},"total_time":{"title":"Total time","value":"11.85"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"285858K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.86"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.68"},"emit_time":{"title":"Emit time","value":"5.08"},"total_time":{"title":"Total time","value":"12.42"}}}]},"cbe2b88bef120261c98af01564da59a9c93860e6":{"2020-03-28T19:50:14.554Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"407750"},"identifiers":{"title":"Identifiers","value":"127353"},"symbols":{"title":"Symbols","value":"102527"},"types":{"title":"Types","value":"37227"},"memory_used":{"title":"Memory used","value":"409652K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.59"},"bind_time":{"title":"Bind time","value":"0.73"},"check_time":{"title":"Check time","value":"3.80"},"emit_time":{"title":"Emit time","value":"2.78"},"total_time":{"title":"Total time","value":"8.90"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"407750"},"identifiers":{"title":"Identifiers","value":"127353"},"symbols":{"title":"Symbols","value":"102527"},"types":{"title":"Types","value":"37227"},"memory_used":{"title":"Memory used","value":"258517K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.54"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.70"},"emit_time":{"title":"Emit time","value":"3.27"},"total_time":{"title":"Total time","value":"9.24"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112009"},"nodes":{"title":"Nodes","value":"437906"},"identifiers":{"title":"Identifiers","value":"137401"},"symbols":{"title":"Symbols","value":"102562"},"types":{"title":"Types","value":"32255"},"memory_used":{"title":"Memory used","value":"270887K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.63"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"4.17"},"emit_time":{"title":"Emit time","value":"4.34"},"total_time":{"title":"Total time","value":"10.90"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97009"},"nodes":{"title":"Nodes","value":"442906"},"identifiers":{"title":"Identifiers","value":"132401"},"symbols":{"title":"Symbols","value":"92563"},"types":{"title":"Types","value":"27255"},"memory_used":{"title":"Memory used","value":"291067K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.70"},"check_time":{"title":"Check time","value":"3.91"},"emit_time":{"title":"Emit time","value":"4.34"},"total_time":{"title":"Total time","value":"10.60"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104509"},"nodes":{"title":"Nodes","value":"440406"},"identifiers":{"title":"Identifiers","value":"134901"},"symbols":{"title":"Symbols","value":"97563"},"types":{"title":"Types","value":"29755"},"memory_used":{"title":"Memory used","value":"276174K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.16"},"emit_time":{"title":"Emit time","value":"4.44"},"total_time":{"title":"Total time","value":"11.05"}}}]},"c22c1998c877b7856df99fd999b7c0fe9d025e49":{"2020-04-11T10:31:23.633Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112007"},"nodes":{"title":"Nodes","value":"407869"},"identifiers":{"title":"Identifiers","value":"127403"},"symbols":{"title":"Symbols","value":"102555"},"types":{"title":"Types","value":"37241"},"memory_used":{"title":"Memory used","value":"404155K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.67"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.24"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"9.93"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112007"},"nodes":{"title":"Nodes","value":"407869"},"identifiers":{"title":"Identifiers","value":"127403"},"symbols":{"title":"Symbols","value":"102555"},"types":{"title":"Types","value":"37241"},"memory_used":{"title":"Memory used","value":"458916K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.69"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.02"},"emit_time":{"title":"Emit time","value":"3.24"},"total_time":{"title":"Total time","value":"9.80"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112023"},"nodes":{"title":"Nodes","value":"438025"},"identifiers":{"title":"Identifiers","value":"137451"},"symbols":{"title":"Symbols","value":"102590"},"types":{"title":"Types","value":"32269"},"memory_used":{"title":"Memory used","value":"280336K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.72"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.29"},"emit_time":{"title":"Emit time","value":"4.57"},"total_time":{"title":"Total time","value":"11.39"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97023"},"nodes":{"title":"Nodes","value":"443025"},"identifiers":{"title":"Identifiers","value":"132451"},"symbols":{"title":"Symbols","value":"92591"},"types":{"title":"Types","value":"27269"},"memory_used":{"title":"Memory used","value":"263211K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.70"},"bind_time":{"title":"Bind time","value":"0.77"},"check_time":{"title":"Check time","value":"3.96"},"emit_time":{"title":"Emit time","value":"4.47"},"total_time":{"title":"Total time","value":"10.91"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104523"},"nodes":{"title":"Nodes","value":"440525"},"identifiers":{"title":"Identifiers","value":"134951"},"symbols":{"title":"Symbols","value":"97591"},"types":{"title":"Types","value":"29769"},"memory_used":{"title":"Memory used","value":"279807K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"4.61"},"total_time":{"title":"Total time","value":"11.51"}}}]}}} \ No newline at end of file From 5abc4cdfcade9399eae5a72b9ca795c4f6ff0bf7 Mon Sep 17 00:00:00 2001 From: typescripttdd <59508597+typescripttdd@users.noreply.github.com> Date: Sun, 12 Apr 2020 09:15:17 +0100 Subject: [PATCH 37/43] Add DefinitelyTyped Tests data (#297) Co-authored-by: Vittorio Guerriero --- data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json | 2 +- data/definitelyTyped/list.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json b/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json index ba1579455..7de51327e 100644 --- a/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json +++ b/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json @@ -1 +1 @@ -[{"item":"7zip-min","response":"success"},{"item":"a-big-triangle","response":"success"},{"item":"a11y-dialog","response":"success"},{"item":"abbrev","response":"success"},{"item":"abs","response":"success"},{"item":"absolute","response":"success"},{"item":"abstract-leveldown","response":"success"},{"item":"acc-wizard","response":"success"},{"item":"accept","response":"success"},{"item":"accept-language-parser","response":"success"},{"item":"accepts","response":"success"},{"item":"accounting","response":"success"},{"item":"accurate-interval","response":"success"},{"item":"ace","response":"success"},{"item":"ace-diff","response":"success"},{"item":"acl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"acorn","response":"success"},{"item":"actioncable","response":"success"},{"item":"activedirectory2","response":"success"},{"item":"activestorage","response":"success"},{"item":"activex-access","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adox","response":"success"},{"item":"activex-dao","response":"success"},{"item":"activex-diskquota","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-excel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-faxcomexlib","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-infopath","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-interop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-iwshruntimelibrary","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"activex-libreoffice","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-msforms","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-mshtml","response":"success"},{"item":"activex-msxml2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-office","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-outlook","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-powerpoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-scripting","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-shdocvw","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-shell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-stdole","response":"success"},{"item":"activex-vbide","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-wia","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-word","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"adal-angular","response":"success"},{"item":"add-zero","response":"success"},{"item":"add2home","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/add2home"},{"item":"adhan","response":"success"},{"item":"adlib","response":"success"},{"item":"adm-zip","response":"success"},{"item":"adone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aes-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aframe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ag-channel","response":"success"},{"item":"ag-simple-broker","response":"success"},{"item":"agenda","response":"success"},{"item":"agent-base","response":"success"},{"item":"agiledigital__mule-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"agilite","response":"success"},{"item":"agora-rtc-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"airbnb-prop-types","response":"success"},{"item":"airtable","response":"success"},{"item":"ajv-async","response":"success"},{"item":"ajv-errors","response":"success"},{"item":"ajv-keywords","response":"success"},{"item":"ajv-merge-patch","response":"success"},{"item":"ajv-pack","response":"success"},{"item":"akamai-edgeworkers","response":"success"},{"item":"akumina-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ale-url-parser","response":"success"},{"item":"alertify","response":"success"},{"item":"alex","response":"success"},{"item":"alexa-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"alexa-voice-service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"algebra.js","response":"success"},{"item":"algoliasearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"algoliasearch-helper","response":"success"},{"item":"ali-app","response":"success"},{"item":"ali-oss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"align-text","response":"success"},{"item":"alks-node","response":"success"},{"item":"all-the-package-names","response":"success"},{"item":"alloy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"allure-js-commons","response":"success"},{"item":"almost-equal","response":"success"},{"item":"alpha-bravo","response":"success"},{"item":"alt","response":"success"},{"item":"amap-js-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api"},{"item":"amap-js-api-arrival-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-autocomplete","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-city-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-control-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-district-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-driving","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geocoder","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geolocation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-heatmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-indoor-map","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-line-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map-type","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map3d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api-map3d"},{"item":"amap-js-api-overview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-place-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-riding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-scale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-station-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-tool-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-transfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amazon-cognito-auth-js","response":"success"},{"item":"amazon-connect-streams","response":"success"},{"item":"amazon-product-api","response":"success"},{"item":"amcharts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amp","response":"success"},{"item":"amp-message","response":"success"},{"item":"amphtml-validator","response":"success"},{"item":"amplifier","response":"success"},{"item":"amplify","response":"success"},{"item":"amplify-deferred","response":"success"},{"item":"amplitude-js","response":"success"},{"item":"amqp","response":"success"},{"item":"amqp-connection-manager","response":"success"},{"item":"amqp-rpc","response":"success"},{"item":"amqplib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"analytics-node","response":"success"},{"item":"anchor-js","response":"success"},{"item":"angular","response":"success"},{"item":"angular-agility","response":"success"},{"item":"angular-animate","response":"success"},{"item":"angular-aria","response":"success"},{"item":"angular-block-ui","response":"success"},{"item":"angular-bootstrap-calendar","response":"success"},{"item":"angular-bootstrap-lightbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-breadcrumb","response":"success"},{"item":"angular-clipboard","response":"success"},{"item":"angular-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-cookies","response":"success"},{"item":"angular-deferred-bootstrap","response":"success"},{"item":"angular-desktop-notification","response":"success"},{"item":"angular-dialog-service","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-environment","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-es","response":"success"},{"item":"angular-feature-flags","response":"success"},{"item":"angular-file-saver","response":"success"},{"item":"angular-file-upload","response":"success"},{"item":"angular-formly","response":"success"},{"item":"angular-fullscreen","response":"success"},{"item":"angular-gettext","response":"success"},{"item":"angular-google-analytics","response":"success"},{"item":"angular-gridster","response":"success"},{"item":"angular-growl-v2","response":"success"},{"item":"angular-hotkeys","response":"success"},{"item":"angular-http-auth","response":"success"},{"item":"angular-httpi","response":"success"},{"item":"angular-idle","response":"success"},{"item":"angular-jwt","response":"success"},{"item":"angular-load","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-loading-bar","response":"success"},{"item":"angular-local-storage","response":"success"},{"item":"angular-localforage","response":"success"},{"item":"angular-locker","response":"success"},{"item":"angular-material","response":"success"},{"item":"angular-media-queries","response":"success"},{"item":"angular-meteor","response":"success"},{"item":"angular-mocks","response":"success"},{"item":"angular-modal","response":"success"},{"item":"angular-notifications","response":"success"},{"item":"angular-notify","response":"success"},{"item":"angular-oauth2","response":"success"},{"item":"angular-odata-resources","response":"success"},{"item":"angular-pdfjs-viewer","response":"success"},{"item":"angular-permission","response":"success"},{"item":"angular-promise-tracker","response":"success"},{"item":"angular-q-extras","response":"success"},{"item":"angular-q-spread","response":"success"},{"item":"angular-resource","response":"success"},{"item":"angular-route","response":"success"},{"item":"angular-sanitize","response":"success"},{"item":"angular-scenario","response":"success"},{"item":"angular-scroll","response":"success"},{"item":"angular-signalr-hub","response":"success"},{"item":"angular-spinner","response":"success"},{"item":"angular-storage","response":"success"},{"item":"angular-strap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-toastr","response":"success"},{"item":"angular-toasty","response":"success"},{"item":"angular-tooltips","response":"success"},{"item":"angular-translate","response":"success"},{"item":"angular-ui-bootstrap","response":"success"},{"item":"angular-ui-notification","response":"success"},{"item":"angular-ui-router","response":"success"},{"item":"angular-ui-scroll","response":"success"},{"item":"angular-ui-sortable","response":"success"},{"item":"angular-ui-tree","response":"success"},{"item":"angular-websocket","response":"success"},{"item":"angular-wizard","response":"success"},{"item":"angular-xeditable","response":"success"},{"item":"angular.throttle","response":"success"},{"item":"angularfire","response":"success"},{"item":"angularlocalstorage","response":"success"},{"item":"angulartics","response":"success"},{"item":"animation-frame","response":"success"},{"item":"animejs","response":"success"},{"item":"annyang","response":"success"},{"item":"ansi","response":"success"},{"item":"ansi-escape-sequences","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ansi-styles","response":"success"},{"item":"ansicolors","response":"success"},{"item":"antlr4","response":"success"},{"item":"antlr4-autosuggest","response":"success"},{"item":"any-db","response":"success"},{"item":"any-db-transaction","response":"success"},{"item":"anymatch","response":"success"},{"item":"anyproxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aos","response":"success"},{"item":"apex.js","response":"success"},{"item":"api-error-handler","response":"success"},{"item":"apicache","response":"success"},{"item":"apicalypse","response":"success"},{"item":"apigee-access","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apimocker","response":"success"},{"item":"apollo-codegen","response":"success"},{"item":"apollo-upload-client","response":"success"},{"item":"apostrophe","response":"success"},{"item":"app-module-path","response":"success"},{"item":"app-root-dir","response":"success"},{"item":"app-root-path","response":"success"},{"item":"appdmg","response":"success"},{"item":"append-query","response":"success"},{"item":"appframework","response":"success"},{"item":"apple-mapkit-js","response":"success"},{"item":"apple-music-api","response":"success"},{"item":"apple-signin-api","response":"success"},{"item":"applepayjs","response":"success"},{"item":"appletvjs","response":"success"},{"item":"applicationinsights-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apptimize__apptimize-web-sdk","response":"success"},{"item":"aqb","response":"success"},{"item":"arangodb","response":"success"},{"item":"arbiter","response":"success"},{"item":"arcgis-js-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"arcgis-rest-api","response":"success"},{"item":"arcgis-to-geojson-utils","response":"success"},{"item":"architect","response":"success"},{"item":"archiver","response":"success"},{"item":"archy","response":"success"},{"item":"are-we-there-yet","response":"success"},{"item":"argon2-browser","response":"success"},{"item":"argparse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"args","response":"success"},{"item":"argv","response":"success"},{"item":"aria-query","response":"success"},{"item":"arr-diff","response":"success"},{"item":"arr-union","response":"success"},{"item":"array-binarysearch.closest","response":"success"},{"item":"array-find-index","response":"success"},{"item":"array-foreach","response":"success"},{"item":"array-initial","response":"success"},{"item":"array-sort","response":"success"},{"item":"array-unique","response":"success"},{"item":"array.from","response":"success"},{"item":"array.prototype.flat","response":"success"},{"item":"array.prototype.flatmap","response":"success"},{"item":"artillery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'find' of undefined\n"},{"item":"asana","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asap","response":"success"},{"item":"ascii-art","response":"success"},{"item":"ascii2mathml","response":"success"},{"item":"asciichart","response":"success"},{"item":"asciify","response":"success"},{"item":"asenv","response":"success"},{"item":"asn1","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asn1js","response":"success"},{"item":"aspnet-identity-pw","response":"success"},{"item":"assert","response":"success"},{"item":"assert-equal-jsx","response":"success"},{"item":"assert-plus","response":"success"},{"item":"assertsharp","response":"success"},{"item":"assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n"},{"item":"astring","response":"success"},{"item":"async","response":"success"},{"item":"async-busboy","response":"success"},{"item":"async-cache","response":"success"},{"item":"async-eventemitter","response":"success"},{"item":"async-iterable-stream","response":"success"},{"item":"async-lock","response":"success"},{"item":"async-polling","response":"success"},{"item":"async-retry","response":"success"},{"item":"async-stream-emitter","response":"success"},{"item":"async-stream-generator","response":"success"},{"item":"async-writer","response":"success"},{"item":"async.nexttick","response":"success"},{"item":"asynciterator","response":"success"},{"item":"athenajs","response":"success"},{"item":"atlaskit__button","response":"success"},{"item":"atlaskit__calendar","response":"success"},{"item":"atlaskit__feedback-collector","response":"success"},{"item":"atlaskit__inline-edit","response":"success"},{"item":"atlaskit__layer","response":"success"},{"item":"atlaskit__single-select","response":"success"},{"item":"atlaskit__tree","response":"success"},{"item":"atlassian-crowd-client","response":"success"},{"item":"atmosphere.js","response":"success"},{"item":"atob","response":"success"},{"item":"atob-lite","response":"success"},{"item":"atom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"atom-keymap","response":"success"},{"item":"atom-mocha-test-runner","response":"success"},{"item":"atpl","response":"success"},{"item":"audio-context","response":"success"},{"item":"audio-play","response":"success"},{"item":"audiobuffer-to-wav","response":"success"},{"item":"audiosprite","response":"success"},{"item":"auth-header","response":"success"},{"item":"auth0","response":"success"},{"item":"auth0-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"auth0-js","response":"success"},{"item":"auth0-lock","response":"success"},{"item":"auth0.widget","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"authenticator","response":"success"},{"item":"auto-launch","response":"success"},{"item":"auto-sni","response":"success"},{"item":"autobahn","response":"success"},{"item":"autocannon","response":"success"},{"item":"autoprefixer","response":"success"},{"item":"autoprefixer-core","response":"success"},{"item":"autosize","response":"success"},{"item":"autosuggest-highlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/autosuggest-highlight"},{"item":"avoscloud-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"await-timeout","response":"success"},{"item":"awesomplete","response":"success"},{"item":"aws-iot-device-sdk","response":"success"},{"item":"aws-lambda","response":"success"},{"item":"aws-param-store","response":"success"},{"item":"aws-regions","response":"success"},{"item":"aws-serverless-express","response":"success"},{"item":"aws4","response":"success"},{"item":"axe-webdriverjs","response":"success"},{"item":"axel","response":"success"},{"item":"axios-cancel","response":"success"},{"item":"axios-case-converter","response":"success"},{"item":"axios-curlirize","response":"success"},{"item":"axios-token-interceptor","response":"success"},{"item":"axon","response":"success"},{"item":"azdata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-kusto-data","response":"success"},{"item":"azure-mobile-services-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-sb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"b-spline","response":"success"},{"item":"b2a","response":"success"},{"item":"b64-lite","response":"success"},{"item":"b_","response":"success"},{"item":"babel-code-frame","response":"success"},{"item":"babel-core","response":"success"},{"item":"babel-generator","response":"success"},{"item":"babel-plugin-macros","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-plugin-react-pug","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/babel-plugin-react-pug"},{"item":"babel-plugin-syntax-jsx","response":"success"},{"item":"babel-template","response":"success"},{"item":"babel-traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-types","response":"success"},{"item":"babel-webpack-plugin","response":"success"},{"item":"babel__code-frame","response":"success"},{"item":"babel__core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel__generator","response":"success"},{"item":"babel__standalone","response":"success"},{"item":"babel__template","response":"success"},{"item":"babel__traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babelify","response":"success"},{"item":"babylon","response":"success"},{"item":"babylon-walk","response":"success"},{"item":"babyparse","response":"success"},{"item":"backbone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"backbone-associations","response":"success"},{"item":"backbone-fetch-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone-relational","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.layoutmanager","response":"success"},{"item":"backbone.localstorage","response":"success"},{"item":"backbone.marionette","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.paginator","response":"success"},{"item":"backbone.radio","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backlog-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"backo2","response":"success"},{"item":"backoff","response":"success"},{"item":"backstopjs","response":"success"},{"item":"bagpipes","response":"success"},{"item":"baidu-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"baidumap-web-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/baidumap-web-sdk"},{"item":"balanced-match","response":"success"},{"item":"bandagedbd__bdapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"barbellweights","response":"success"},{"item":"barcode","response":"success"},{"item":"bardjs","response":"success"},{"item":"base-64","response":"success"},{"item":"base16","response":"success"},{"item":"base64-arraybuffer","response":"success"},{"item":"base64-async","response":"success"},{"item":"base64-js","response":"success"},{"item":"base64-stream","response":"success"},{"item":"base64-url","response":"success"},{"item":"base64topdf","response":"success"},{"item":"bases","response":"success"},{"item":"bash-glob","response":"success"},{"item":"basic-auth","response":"success"},{"item":"basicauth-middleware","response":"success"},{"item":"basiclightbox","response":"success"},{"item":"batch-stream","response":"success"},{"item":"battery-level","response":"success"},{"item":"bayes-classifier","response":"success"},{"item":"bazinga-translator","response":"success"},{"item":"bchaddrjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bcp-47","response":"success"},{"item":"bcp-47-match","response":"success"},{"item":"bcrypt","response":"success"},{"item":"bcrypt-nodejs","response":"success"},{"item":"bcryptjs","response":"success"},{"item":"bdfjs","response":"success"},{"item":"beanstalkd","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"beanstalkd-worker","response":"success"},{"item":"bearcat-es6","response":"success"},{"item":"beats","response":"success"},{"item":"bech32","response":"success"},{"item":"behavior3","response":"success"},{"item":"bell","response":"success"},{"item":"benchmark","response":"success"},{"item":"bencode","response":"success"},{"item":"bent","response":"success"},{"item":"better-curry","response":"success"},{"item":"better-queue","response":"success"},{"item":"better-scroll","response":"success"},{"item":"better-sqlite3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"bezier-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"bgiframe","response":"success"},{"item":"bidirectional-map","response":"success"},{"item":"big.js","response":"success"},{"item":"bigi","response":"success"},{"item":"bigint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/bigint/index.d.ts(9,19): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(21,11): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(57,13): error TS2300: Duplicate identifier 'BigInt'.\n"},{"item":"bignum","response":"success"},{"item":"bigscreen","response":"success"},{"item":"bin-pack","response":"success"},{"item":"binary-parse-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"binary-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"binaryextensions","response":"success"},{"item":"bind-ponyfill","response":"success"},{"item":"bindings","response":"success"},{"item":"bintrees","response":"success"},{"item":"bip21","response":"success"},{"item":"bip38","response":"success"},{"item":"bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"bit-twiddle","response":"success"},{"item":"bitcore-lib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bittorrent-protocol","response":"success"},{"item":"bitwise-xor","response":"success"},{"item":"bl","response":"success"},{"item":"blacklist","response":"success"},{"item":"blake2","response":"success"},{"item":"blazor__javascript-interop","response":"success"},{"item":"blazy","response":"success"},{"item":"bleno","response":"success"},{"item":"blessed","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blip-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blissfuljs","response":"success"},{"item":"blob-stream","response":"success"},{"item":"blob-to-buffer","response":"success"},{"item":"blocked","response":"success"},{"item":"blockies","response":"success"},{"item":"blocks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"bloem","response":"success"},{"item":"bloom-filter","response":"success"},{"item":"bloomfilter","response":"success"},{"item":"blue-tape","response":"success"},{"item":"bluebird","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"bluebird-global","response":"success"},{"item":"bluebird-retry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"blueimp-load-image","response":"success"},{"item":"blueimp-md5","response":"success"},{"item":"bmp-js","response":"success"},{"item":"bn.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"body-parser","response":"success"},{"item":"body-parser-xml","response":"success"},{"item":"body-scroll-lock","response":"success"},{"item":"bonjour","response":"success"},{"item":"bookshelf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"boolify-string","response":"success"},{"item":"boom","response":"success"},{"item":"bootbox","response":"success"},{"item":"bootpag","response":"success"},{"item":"bootstrap","response":"success"},{"item":"bootstrap-3-typeahead","response":"success"},{"item":"bootstrap-colorpicker","response":"success"},{"item":"bootstrap-datepicker","response":"success"},{"item":"bootstrap-fileinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"bootstrap-growl-ifightcrime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-maxlength","response":"success"},{"item":"bootstrap-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"bootstrap-notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-select","response":"success"},{"item":"bootstrap-slider","response":"success"},{"item":"bootstrap-switch","response":"success"},{"item":"bootstrap-toggle","response":"success"},{"item":"bootstrap-touchspin","response":"success"},{"item":"bootstrap-treeview","response":"success"},{"item":"bootstrap-validator","response":"success"},{"item":"bootstrap.paginator","response":"success"},{"item":"bootstrap.timepicker","response":"success"},{"item":"bootstrap.v3.datetimepicker","response":"success"},{"item":"bootstrap3-dialog","response":"success"},{"item":"bounce.js","response":"success"},{"item":"box-intersect","response":"success"},{"item":"box2d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bpmn-moddle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"brace-expansion","response":"success"},{"item":"braces","response":"success"},{"item":"brainhubeu__react-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"braintree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"braintree-web","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"braintree-web-drop-in","response":"success"},{"item":"breeze","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bresenham","response":"success"},{"item":"bricks.js","response":"success"},{"item":"bristol","response":"success"},{"item":"bristol-sentry","response":"success"},{"item":"bro-fs","response":"success"},{"item":"brorand","response":"success"},{"item":"brotli-webpack-plugin","response":"success"},{"item":"browser-bunyan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"browser-fingerprint","response":"success"},{"item":"browser-harness","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'kind' of undefined\n"},{"item":"browser-image-compression","response":"success"},{"item":"browser-or-node","response":"success"},{"item":"browser-pack","response":"success"},{"item":"browser-report","response":"success"},{"item":"browser-resolve","response":"success"},{"item":"browser-sync","response":"success"},{"item":"browser-sync-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"browserify","response":"success"},{"item":"browserslist","response":"success"},{"item":"browserslist-useragent","response":"success"},{"item":"bs58","response":"success"},{"item":"bser","response":"success"},{"item":"bson","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"btoa","response":"success"},{"item":"btoa-lite","response":"success"},{"item":"buble","response":"success"},{"item":"bucks","response":"success"},{"item":"buffer-compare","response":"success"},{"item":"buffer-crc32","response":"success"},{"item":"buffer-equal","response":"success"},{"item":"buffer-from","response":"success"},{"item":"buffer-reader","response":"success"},{"item":"buffer-split","response":"success"},{"item":"buffer-xor","response":"success"},{"item":"bufferhelper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"buffers","response":"success"},{"item":"bufferstream","response":"success"},{"item":"build-output-script","response":"success"},{"item":"bull","response":"success"},{"item":"bull-arena","response":"success"},{"item":"bull-board","response":"success"},{"item":"bulma-calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"bump-regex","response":"success"},{"item":"bunnymq","response":"success"},{"item":"bunyan","response":"success"},{"item":"bunyan-blackhole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"bunyan-config","response":"success"},{"item":"bunyan-format","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"bunyan-logentries","response":"success"},{"item":"bunyan-prettystream","response":"success"},{"item":"bunyan-seq","response":"success"},{"item":"bunyan-winston-adapter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"burns","response":"success"},{"item":"busboy","response":"success"},{"item":"business-rules-engine","response":"success"},{"item":"bwip-js","response":"success"},{"item":"byline","response":"success"},{"item":"byte-range","response":"success"},{"item":"bytebuffer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"bytes","response":"success"},{"item":"bytewise","response":"success"},{"item":"c3","response":"success"},{"item":"cacache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cache-manager","response":"success"},{"item":"cacheable-request","response":"success"},{"item":"cached-path-relative","response":"success"},{"item":"cadesplugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"cal-heatmap","response":"success"},{"item":"calendar","response":"success"},{"item":"calidation","response":"success"},{"item":"callback-to-async-iterator","response":"success"},{"item":"caller","response":"success"},{"item":"callsite","response":"success"},{"item":"calq","response":"success"},{"item":"camelcase-keys-deep","response":"success"},{"item":"camo","response":"success"},{"item":"camunda-external-task-client-js","response":"success"},{"item":"cancan","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"caniuse-api","response":"success"},{"item":"caniuse-lite","response":"success"},{"item":"cannon","response":"success"},{"item":"canvas-confetti","response":"success"},{"item":"canvas-gauges","response":"success"},{"item":"canvasjs","response":"success"},{"item":"canvaskit-wasm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"capitalize","response":"success"},{"item":"capture-console","response":"success"},{"item":"carbon-components-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"carbon__colors","response":"success"},{"item":"carbon__icon-helpers","response":"success"},{"item":"carbon__icons-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__layout","response":"success"},{"item":"carbon__motion","response":"success"},{"item":"carbon__pictograms-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__themes","response":"success"},{"item":"carbon__type","response":"success"},{"item":"carbone","response":"success"},{"item":"card-validator","response":"success"},{"item":"carlo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"case-sensitive-paths-webpack-plugin","response":"success"},{"item":"caseless","response":"success"},{"item":"cash","response":"success"},{"item":"cashaddrjs","response":"success"},{"item":"casperjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"cassandra-store","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"cassanknex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"catbox-memory","response":"success"},{"item":"catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"cavy","response":"success"},{"item":"cbor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ccap","response":"success"},{"item":"ccapture.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"center-align","response":"success"},{"item":"centra","response":"success"},{"item":"cesium","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cfenv","response":"success"},{"item":"cfn-response","response":"success"},{"item":"chai","response":"success"},{"item":"chai-almost","response":"success"},{"item":"chai-arrays","response":"success"},{"item":"chai-as-promised","response":"success"},{"item":"chai-datetime","response":"success"},{"item":"chai-dom","response":"success"},{"item":"chai-enzyme","response":"success"},{"item":"chai-fs","response":"success"},{"item":"chai-fuzzy","response":"success"},{"item":"chai-jest-snapshot","response":"success"},{"item":"chai-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"chai-json-schema","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"chai-like","response":"success"},{"item":"chai-moment","response":"success"},{"item":"chai-oequal","response":"success"},{"item":"chai-roughly","response":"success"},{"item":"chai-spies","response":"success"},{"item":"chai-string","response":"success"},{"item":"chai-style","response":"success"},{"item":"chai-subset","response":"success"},{"item":"chai-things","response":"success"},{"item":"chai-uuid","response":"success"},{"item":"chai-xml","response":"success"},{"item":"chalk-animation","response":"success"},{"item":"chalk-pipe","response":"success"},{"item":"chance","response":"success"},{"item":"change-case-object","response":"success"},{"item":"change-emitter","response":"success"},{"item":"changelog-parser","response":"success"},{"item":"chardet","response":"success"},{"item":"charm","response":"success"},{"item":"charset","response":"success"},{"item":"chart.js","response":"success"},{"item":"chartist","response":"success"},{"item":"chartmogul-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chayns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"check-error","response":"success"},{"item":"check-sum","response":"success"},{"item":"check-types","response":"success"},{"item":"checkstyle-formatter","response":"success"},{"item":"checksum","response":"success"},{"item":"cheerio","response":"success"},{"item":"chess.js","response":"success"},{"item":"chessboardjs","response":"success"},{"item":"child-process-promise","response":"success"},{"item":"chmodr","response":"success"},{"item":"chocolatechipjs","response":"success"},{"item":"chordsheetjs","response":"success"},{"item":"chosen-js","response":"success"},{"item":"chownr","response":"success"},{"item":"chroma-js","response":"success"},{"item":"chrome","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"chrome-apps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromecast-caf-receiver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"chromecast-caf-sender","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromedriver","response":"success"},{"item":"chui","response":"success"},{"item":"chunk","response":"success"},{"item":"chunk-text","response":"success"},{"item":"ci-info","response":"success"},{"item":"cipher-base","response":"success"},{"item":"circuit-breaker-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"circular-dependency-plugin","response":"success"},{"item":"circular-json","response":"success"},{"item":"ckeditor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clamp","response":"success"},{"item":"clamp-js","response":"success"},{"item":"clamp-js-main","response":"success"},{"item":"clarinet","response":"success"},{"item":"classnames","response":"success"},{"item":"cldrjs","response":"success"},{"item":"clean-css","response":"success"},{"item":"clean-git-ref","response":"success"},{"item":"clean-regexp","response":"success"},{"item":"clear","response":"success"},{"item":"clearbladejs-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"clearbladejs-node","response":"success"},{"item":"clearbladejs-server","response":"success"},{"item":"cleave.js","response":"success"},{"item":"cli","response":"success"},{"item":"cli-box","response":"success"},{"item":"cli-color","response":"success"},{"item":"cli-interact","response":"success"},{"item":"cli-progress","response":"success"},{"item":"cli-spinner","response":"success"},{"item":"cli-spinners","response":"success"},{"item":"cli-table","response":"success"},{"item":"cli-table2","response":"success"},{"item":"client-sessions","response":"success"},{"item":"clientjs","response":"success"},{"item":"cliff","response":"success"},{"item":"clipboard","response":"success"},{"item":"clipboard-js","response":"success"},{"item":"clmtrackr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clndr","response":"success"},{"item":"clockpicker","response":"success"},{"item":"clone","response":"success"},{"item":"clone-deep","response":"success"},{"item":"cloneable-readable","response":"success"},{"item":"cloner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"closure-compiler","response":"success"},{"item":"cloud-config-client","response":"success"},{"item":"cloud-env","response":"success"},{"item":"cloudflare-apps","response":"success"},{"item":"clovelced-plugin-audiomanagement","response":"success"},{"item":"clownface","response":"success"},{"item":"cls-hooked","response":"success"},{"item":"clui","response":"success"},{"item":"clusterize.js","response":"success"},{"item":"cmd-shim","response":"success"},{"item":"cnpj","response":"success"},{"item":"co","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"co-body","response":"success"},{"item":"co-views","response":"success"},{"item":"code","response":"success"},{"item":"codeflask","response":"success"},{"item":"codegen.macro","response":"success"},{"item":"codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"codependency","response":"success"},{"item":"coffeeify","response":"success"},{"item":"coinbase","response":"success"},{"item":"coinbase-commerce-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"coinlist","response":"success"},{"item":"coinstring","response":"success"},{"item":"collections","response":"success"},{"item":"collectionsjs","response":"success"},{"item":"color","response":"success"},{"item":"color-check","response":"success"},{"item":"color-convert","response":"success"},{"item":"color-diff","response":"success"},{"item":"color-hash","response":"success"},{"item":"color-name","response":"success"},{"item":"color-namer","response":"success"},{"item":"color-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"color-support","response":"success"},{"item":"colorbrewer","response":"success"},{"item":"colornames","response":"success"},{"item":"colresizable","response":"success"},{"item":"columnify","response":"success"},{"item":"com.darktalker.cordova.screenshot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"com.wikitude.phonegap.wikitudeplugin","response":"success"},{"item":"combinations","response":"success"},{"item":"combine-reducers","response":"success"},{"item":"combine-source-map","response":"success"},{"item":"combined-stream","response":"success"},{"item":"combokeys","response":"success"},{"item":"cometd","response":"success"},{"item":"command-exists","response":"success"},{"item":"command-line-args","response":"success"},{"item":"command-line-commands","response":"success"},{"item":"command-line-usage","response":"success"},{"item":"commander-remaining-args","response":"success"},{"item":"commangular","response":"success"},{"item":"comment-json","response":"success"},{"item":"commercetools__enzyme-extensions","response":"success"},{"item":"commitlint__load","response":"success"},{"item":"common-errors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"common-prefix","response":"success"},{"item":"common-tags","response":"success"},{"item":"commondir","response":"success"},{"item":"commonmark","response":"success"},{"item":"compare-func","response":"success"},{"item":"compare-function","response":"success"},{"item":"compare-version","response":"success"},{"item":"compass-vertical-rhythm","response":"success"},{"item":"complex","response":"success"},{"item":"complex.js","response":"success"},{"item":"component-emitter","response":"success"},{"item":"compose-function","response":"success"},{"item":"compress.js","response":"success"},{"item":"compressible","response":"success"},{"item":"compression","response":"success"},{"item":"compression-webpack-plugin","response":"success"},{"item":"compute-argmax","response":"success"},{"item":"compute-quantile","response":"success"},{"item":"compute-stdev","response":"success"},{"item":"concat-map","response":"success"},{"item":"concat-stream","response":"success"},{"item":"concaveman","response":"success"},{"item":"concurrently","response":"success"},{"item":"conditional","response":"success"},{"item":"conductor-animate","response":"success"},{"item":"confidence","response":"success"},{"item":"config","response":"success"},{"item":"config-yaml","response":"success"},{"item":"configs-overload","response":"success"},{"item":"configstore","response":"success"},{"item":"configurable","response":"success"},{"item":"confit","response":"success"},{"item":"connect","response":"success"},{"item":"connect-azuretables","response":"success"},{"item":"connect-busboy","response":"success"},{"item":"connect-datadog","response":"success"},{"item":"connect-ensure-login","response":"success"},{"item":"connect-flash","response":"success"},{"item":"connect-history-api-fallback","response":"success"},{"item":"connect-history-api-fallback-exclusions","response":"success"},{"item":"connect-livereload","response":"success"},{"item":"connect-modrewrite","response":"success"},{"item":"connect-mongodb-session","response":"success"},{"item":"connect-pg-simple","response":"success"},{"item":"connect-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"connect-sequence","response":"success"},{"item":"connect-slashes","response":"success"},{"item":"connect-timeout","response":"success"},{"item":"connect-trim-body","response":"success"},{"item":"console-log-level","response":"success"},{"item":"console-stamp","response":"success"},{"item":"console-ui","response":"success"},{"item":"consolidate","response":"success"},{"item":"consul","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"consumable-stream","response":"success"},{"item":"contains-path","response":"success"},{"item":"content-disposition","response":"success"},{"item":"content-range","response":"success"},{"item":"content-type","response":"success"},{"item":"contentful-resolve-response","response":"success"},{"item":"contentstack","response":"success"},{"item":"contextjs","response":"success"},{"item":"continuation-local-storage","response":"success"},{"item":"contract-proxy-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"conventional-changelog","response":"success"},{"item":"conventional-changelog-config-spec","response":"success"},{"item":"conventional-changelog-core","response":"success"},{"item":"conventional-changelog-preset-loader","response":"success"},{"item":"conventional-changelog-writer","response":"success"},{"item":"conventional-commits-parser","response":"success"},{"item":"conventional-recommended-bump","response":"success"},{"item":"convert-layout","response":"success"},{"item":"convert-source-map","response":"success"},{"item":"convert-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"convert-units","response":"success"},{"item":"convict","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"cookie","response":"success"},{"item":"cookie-parser","response":"success"},{"item":"cookie-session","response":"success"},{"item":"cookie-signature","response":"success"},{"item":"cookie_js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"cookiejar","response":"success"},{"item":"cookies","response":"success"},{"item":"copy","response":"success"},{"item":"copy-paste","response":"success"},{"item":"copy-webpack-plugin","response":"success"},{"item":"copyfiles","response":"success"},{"item":"cordova","response":"success"},{"item":"cordova-ionic","response":"success"},{"item":"cordova-plugin-app-version","response":"success"},{"item":"cordova-plugin-background-mode","response":"success"},{"item":"cordova-plugin-badge","response":"success"},{"item":"cordova-plugin-ble-central","response":"success"},{"item":"cordova-plugin-bluetoothclassic-serial","response":"success"},{"item":"cordova-plugin-canvascamera","response":"success"},{"item":"cordova-plugin-device-name","response":"success"},{"item":"cordova-plugin-email-composer","response":"success"},{"item":"cordova-plugin-file-opener2","response":"success"},{"item":"cordova-plugin-ibeacon","response":"success"},{"item":"cordova-plugin-insomnia","response":"success"},{"item":"cordova-plugin-keyboard","response":"success"},{"item":"cordova-plugin-mapsforge","response":"success"},{"item":"cordova-plugin-ms-adal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cordova-plugin-native-keyboard","response":"success"},{"item":"cordova-plugin-ouralabs","response":"success"},{"item":"cordova-plugin-qrscanner","response":"success"},{"item":"cordova-plugin-spinner","response":"success"},{"item":"cordova-plugin-websql","response":"success"},{"item":"cordova-sqlite-storage","response":"success"},{"item":"cordova-universal-links-plugin","response":"success"},{"item":"cordova_app_version_plugin","response":"success"},{"item":"cordovarduino","response":"success"},{"item":"core-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"core-object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"correlation-id","response":"success"},{"item":"cors","response":"success"},{"item":"cote","response":"success"},{"item":"couchbase","response":"success"},{"item":"countdown","response":"success"},{"item":"counterpart","response":"success"},{"item":"countries-and-timezones","response":"success"},{"item":"country-data","response":"success"},{"item":"country-list","response":"success"},{"item":"country-select-js","response":"success"},{"item":"coverup","response":"success"},{"item":"cpx","response":"success"},{"item":"cqrs-domain","response":"success"},{"item":"cradle","response":"success"},{"item":"crc","response":"success"},{"item":"create-error","response":"success"},{"item":"create-hash","response":"success"},{"item":"create-hmac","response":"success"},{"item":"create-react-class","response":"success"},{"item":"create-subscription","response":"success"},{"item":"create-xpub","response":"success"},{"item":"createjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/createjs"},{"item":"createjs-lib","response":"success"},{"item":"credential","response":"success"},{"item":"credit-card-type","response":"success"},{"item":"critters-webpack-plugin","response":"success"},{"item":"cron","response":"success"},{"item":"cron-converter","response":"success"},{"item":"croppie","response":"success"},{"item":"cross-spawn","response":"success"},{"item":"cross-storage","response":"success"},{"item":"crossfilter","response":"success"},{"item":"crossroads","response":"success"},{"item":"crpc","response":"success"},{"item":"crumb","response":"success"},{"item":"cryptex","response":"success"},{"item":"cryptiles","response":"success"},{"item":"crypto-js","response":"success"},{"item":"cryptojs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cryptr","response":"success"},{"item":"cson","response":"success"},{"item":"csp-html-webpack-plugin","response":"success"},{"item":"csprng","response":"success"},{"item":"csrf","response":"success"},{"item":"css","response":"success"},{"item":"css-font-loading-module","response":"success"},{"item":"css-mediaquery","response":"success"},{"item":"css-modules","response":"success"},{"item":"css-modules-loader-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"css-modules-require-hook","response":"success"},{"item":"css-selector-tokenizer","response":"success"},{"item":"css-to-style","response":"success"},{"item":"css-tree","response":"success"},{"item":"cssbeautify","response":"success"},{"item":"cssesc","response":"success"},{"item":"cssnano","response":"success"},{"item":"csso","response":"success"},{"item":"csurf","response":"success"},{"item":"csv2json","response":"success"},{"item":"csvrow","response":"success"},{"item":"csvtojson","response":"success"},{"item":"cucumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cuid","response":"success"},{"item":"cuint","response":"success"},{"item":"currency-formatter","response":"success"},{"item":"current-git-branch","response":"success"},{"item":"cuss","response":"success"},{"item":"custom-error-generator","response":"success"},{"item":"custom-functions-runtime","response":"success"},{"item":"cwd","response":"success"},{"item":"cwise","response":"success"},{"item":"cwise-compiler","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"cwise-parser","response":"success"},{"item":"cyberblast__config","response":"success"},{"item":"cyberblast__logger","response":"success"},{"item":"cyberblast__webserver","response":"success"},{"item":"cybozulabs-md5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cypress-axe","response":"success"},{"item":"cypress-cucumber-preprocessor","response":"success"},{"item":"cypress-image-snapshot","response":"success"},{"item":"cytoscape","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d","response":"success"},{"item":"d20","response":"success"},{"item":"d3","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d3-array","response":"success"},{"item":"d3-axis","response":"success"},{"item":"d3-box","response":"success"},{"item":"d3-brush","response":"success"},{"item":"d3-chord","response":"success"},{"item":"d3-cloud","response":"success"},{"item":"d3-collection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"d3-color","response":"success"},{"item":"d3-contour","response":"success"},{"item":"d3-delaunay","response":"success"},{"item":"d3-dispatch","response":"success"},{"item":"d3-drag","response":"success"},{"item":"d3-dsv","response":"success"},{"item":"d3-ease","response":"success"},{"item":"d3-fetch","response":"success"},{"item":"d3-force","response":"success"},{"item":"d3-format","response":"success"},{"item":"d3-geo","response":"success"},{"item":"d3-graphviz","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-hexbin","response":"success"},{"item":"d3-hierarchy","response":"success"},{"item":"d3-hsv","response":"success"},{"item":"d3-interpolate","response":"success"},{"item":"d3-interpolate-path","response":"success"},{"item":"d3-path","response":"success"},{"item":"d3-polygon","response":"success"},{"item":"d3-quadtree","response":"success"},{"item":"d3-queue","response":"success"},{"item":"d3-random","response":"success"},{"item":"d3-request","response":"success"},{"item":"d3-require","response":"success"},{"item":"d3-sankey","response":"success"},{"item":"d3-scale","response":"success"},{"item":"d3-scale-chromatic","response":"success"},{"item":"d3-selection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"d3-selection-multi","response":"success"},{"item":"d3-shape","response":"success"},{"item":"d3-time","response":"success"},{"item":"d3-time-format","response":"success"},{"item":"d3-timer","response":"success"},{"item":"d3-tip","response":"success"},{"item":"d3-transition","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-voronoi","response":"success"},{"item":"d3-zoom","response":"success"},{"item":"d3.slider","response":"success"},{"item":"d3kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3pie","response":"success"},{"item":"dagre","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-d3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-layout","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dashify","response":"success"},{"item":"dat.gui","response":"success"},{"item":"data-driven","response":"success"},{"item":"datadog-metrics","response":"success"},{"item":"datadog-statsd-metrics-collector","response":"success"},{"item":"datadog-tracer","response":"success"},{"item":"datadog-winston","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"datastore-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"datastore-level","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"datatables.net","response":"success"},{"item":"datatables.net-autofill","response":"success"},{"item":"datatables.net-buttons","response":"success"},{"item":"datatables.net-colreorder","response":"success"},{"item":"datatables.net-fixedcolumns","response":"success"},{"item":"datatables.net-fixedheader","response":"success"},{"item":"datatables.net-keytable","response":"success"},{"item":"datatables.net-rowgroup","response":"success"},{"item":"datatables.net-rowreorder","response":"success"},{"item":"datatables.net-scroller","response":"success"},{"item":"datatables.net-select","response":"success"},{"item":"date-and-time","response":"success"},{"item":"date-arithmetic","response":"success"},{"item":"date-fp","response":"success"},{"item":"date-now","response":"success"},{"item":"date-range-array","response":"success"},{"item":"date-utils","response":"success"},{"item":"date.format.js","response":"success"},{"item":"dateformat","response":"success"},{"item":"datejs","response":"success"},{"item":"daterangepicker","response":"success"},{"item":"dav","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dayzed","response":"success"},{"item":"db-migrate-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db-migrate-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db.js","response":"success"},{"item":"dbus","response":"success"},{"item":"dc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"deasync","response":"success"},{"item":"death","response":"success"},{"item":"debessmann","response":"success"},{"item":"debounce","response":"success"},{"item":"debounce-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"debug","response":"success"},{"item":"decay","response":"success"},{"item":"decode-entities","response":"success"},{"item":"decode-uri-component","response":"success"},{"item":"decomment","response":"success"},{"item":"decompress","response":"success"},{"item":"decorum","response":"success"},{"item":"dedent","response":"success"},{"item":"deep-assign","response":"success"},{"item":"deep-diff","response":"success"},{"item":"deep-equal","response":"success"},{"item":"deep-equal-in-any-order","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"deep-extend","response":"success"},{"item":"deep-freeze","response":"success"},{"item":"deep-freeze-strict","response":"success"},{"item":"deezer-sdk","response":"success"},{"item":"default-gateway","response":"success"},{"item":"defaults","response":"success"},{"item":"defaults-deep","response":"success"},{"item":"defer-promise","response":"success"},{"item":"define-properties","response":"success"},{"item":"defined","response":"success"},{"item":"deglob","response":"success"},{"item":"deindent","response":"success"},{"item":"deku","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"delaunator","response":"success"},{"item":"delete-empty","response":"success"},{"item":"deline","response":"success"},{"item":"deluge","response":"success"},{"item":"denodeify","response":"success"},{"item":"deoxxa-content-type","response":"success"},{"item":"depd","response":"success"},{"item":"dependency-tree","response":"success"},{"item":"deployjava","response":"success"},{"item":"deprecate","response":"success"},{"item":"deps-sort","response":"success"},{"item":"derhuerst__cli-on-key","response":"success"},{"item":"destroy","response":"success"},{"item":"destroy-on-hwm","response":"success"},{"item":"detect-character-encoding","response":"success"},{"item":"detect-emoji-support","response":"success"},{"item":"detect-hover","response":"success"},{"item":"detect-it","response":"success"},{"item":"detect-node","response":"success"},{"item":"detect-passive-events","response":"success"},{"item":"detect-pointer","response":"success"},{"item":"detect-port","response":"success"},{"item":"detect-touch-events","response":"success"},{"item":"detective","response":"success"},{"item":"detox","response":"success"},{"item":"dev-ip","response":"success"},{"item":"devexpress-aspnetcore-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"devexpress-web","response":"success"},{"item":"dexie-batch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"df-visible","response":"success"},{"item":"dhtmlxgantt","response":"success"},{"item":"dhtmlxscheduler","response":"success"},{"item":"di","response":"success"},{"item":"di-lite","response":"success"},{"item":"diacritics","response":"success"},{"item":"dialog-polyfill","response":"success"},{"item":"dialogflow-fulfillment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n"},{"item":"dicer","response":"success"},{"item":"didyoumean","response":"success"},{"item":"diff","response":"success"},{"item":"diff-match-patch","response":"success"},{"item":"diff2html","response":"success"},{"item":"diffie-hellman","response":"success"},{"item":"difflib","response":"success"},{"item":"digibyte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dinero.js","response":"success"},{"item":"dingtalk-robot-sender","response":"success"},{"item":"dir-glob","response":"success"},{"item":"dir-resolve","response":"success"},{"item":"dir-walker-gen","response":"success"},{"item":"direction","response":"success"},{"item":"dirname-regex","response":"success"},{"item":"dirty-chai","response":"success"},{"item":"discontinuous-range","response":"success"},{"item":"discord-rpc","response":"success"},{"item":"discourse-sso","response":"success"},{"item":"dispatchr","response":"success"},{"item":"disposable-email-domains","response":"success"},{"item":"distributions","response":"success"},{"item":"distributions-poisson-quantile","response":"success"},{"item":"diva.js","response":"success"},{"item":"djv","response":"success"},{"item":"dkim-signer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dlv","response":"success"},{"item":"dnssd","response":"success"},{"item":"doccookies","response":"success"},{"item":"dock-spawn","response":"success"},{"item":"docker-events","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"dockerode","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"docopt","response":"success"},{"item":"doctrine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"document-ready","response":"success"},{"item":"documentdb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"documentdb-server","response":"success"},{"item":"documentdb-session","response":"success"},{"item":"docx-templates","response":"success"},{"item":"dogapi","response":"success"},{"item":"doge-seed","response":"success"},{"item":"dojo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dom-clipboard-api","response":"success"},{"item":"dom-inputevent","response":"success"},{"item":"dom-matches","response":"success"},{"item":"dom-mediacapture-record","response":"success"},{"item":"dom-parser","response":"success"},{"item":"dom-to-image","response":"success"},{"item":"dom4","response":"success"},{"item":"domexception","response":"success"},{"item":"domhandler","response":"success"},{"item":"domo","response":"success"},{"item":"dompurify","response":"success"},{"item":"domready","response":"success"},{"item":"domtagger","response":"success"},{"item":"domurl","response":"success"},{"item":"domutils","response":"success"},{"item":"donna","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dookie","response":"success"},{"item":"dos2unix","response":"success"},{"item":"dot","response":"success"},{"item":"dot-object","response":"success"},{"item":"dot-prop-immutable","response":"success"},{"item":"dotdir-regex","response":"success"},{"item":"dotdotdot","response":"success"},{"item":"dotenv-flow","response":"success"},{"item":"dotenv-parse-variables","response":"success"},{"item":"dotenv-safe","response":"success"},{"item":"dotenv-webpack","response":"success"},{"item":"dotfile-regex","response":"success"},{"item":"dottie","response":"success"},{"item":"double-ended-queue","response":"success"},{"item":"doublearray","response":"success"},{"item":"doubleclick-gpt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"download","response":"success"},{"item":"downloadjs","response":"success"},{"item":"downscale","response":"success"},{"item":"dplayer","response":"success"},{"item":"draft-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draft-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draftjs-to-html","response":"success"},{"item":"drag-timetable","response":"success"},{"item":"draggabilly","response":"success"},{"item":"dragscroll","response":"success"},{"item":"dragselect","response":"success"},{"item":"dragster","response":"success"},{"item":"dragula","response":"success"},{"item":"driftless","response":"success"},{"item":"drivelist","response":"success"},{"item":"dropbox-chooser","response":"success"},{"item":"dropboxjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dropkickjs","response":"success"},{"item":"dropzone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ds18b20","response":"success"},{"item":"dsv","response":"success"},{"item":"dts-bundle","response":"success"},{"item":"dts-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"du","response":"success"},{"item":"duckduckgo-images-api","response":"success"},{"item":"duo_web_sdk","response":"success"},{"item":"duosecurity__duo_web","response":"success"},{"item":"duplexer2","response":"success"},{"item":"duplexer3","response":"success"},{"item":"duplexify","response":"success"},{"item":"duplicate-package-checker-webpack-plugin","response":"success"},{"item":"durandal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dush","response":"success"},{"item":"dustjs-linkedin","response":"success"},{"item":"dv","response":"success"},{"item":"dvtng-jss","response":"success"},{"item":"dw-bxslider-4","response":"success"},{"item":"dwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"dygraphs","response":"success"},{"item":"dymo-label-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dynamic-time-warping","response":"success"},{"item":"dynamodb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"dynatable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dynatrace","response":"success"},{"item":"dynogels","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"each","response":"success"},{"item":"earcut","response":"success"},{"item":"easeljs","response":"success"},{"item":"eases","response":"success"},{"item":"easy-api-request","response":"success"},{"item":"easy-jsend","response":"success"},{"item":"easy-rbac","response":"success"},{"item":"easy-session","response":"success"},{"item":"easy-table","response":"success"},{"item":"easy-xapi","response":"success"},{"item":"easy-xapi-utils","response":"success"},{"item":"easydate","response":"success"},{"item":"ebml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ebongarde-root","response":"success"},{"item":"eccrypto","response":"success"},{"item":"echarts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ecma-proposal-math-extensions","response":"success"},{"item":"ecore","response":"success"},{"item":"ecurve","response":"success"},{"item":"ed25519","response":"success"},{"item":"ed2curve","response":"success"},{"item":"edmonds-blossom","response":"success"},{"item":"edtr-io__mathquill","response":"success"},{"item":"ee-first","response":"success"},{"item":"egg-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"egg.js","response":"success"},{"item":"egjs__axes","response":"success"},{"item":"egjs__component","response":"success"},{"item":"ej.web.all","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"ejs","response":"success"},{"item":"ejs-locals","response":"success"},{"item":"ejson","response":"success"},{"item":"elastic.js","response":"success"},{"item":"elasticlunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"elasticsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"electron-clipboard-extended","response":"success"},{"item":"electron-devtools-installer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"electron-json-storage","response":"success"},{"item":"electron-load-devtool","response":"success"},{"item":"electron-localshortcut","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-notifications","response":"success"},{"item":"electron-notify","response":"success"},{"item":"electron-packager","response":"success"},{"item":"electron-prompt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-settings","response":"success"},{"item":"electron-spellchecker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-window-state","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"element-closest","response":"success"},{"item":"element-resize-detector","response":"success"},{"item":"element-resize-event","response":"success"},{"item":"elementtree","response":"success"},{"item":"elgamal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"elliptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"elm","response":"success"},{"item":"elo-rank","response":"success"},{"item":"elv","response":"success"},{"item":"email-templates","response":"success"},{"item":"ember","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data__adapter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__model","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__serializer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-data__store","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-feature-flags","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-modal-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-resolver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-testing-helpers","response":"success"},{"item":"ember__application","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember__controller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__debug","response":"success"},{"item":"ember__engine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__error","response":"success"},{"item":"ember__object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__ordered-set","response":"success"},{"item":"ember__polyfills","response":"success"},{"item":"ember__routing","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__runloop","response":"success"},{"item":"ember__service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__string","response":"success"},{"item":"ember__template","response":"success"},{"item":"ember__test","response":"success"},{"item":"ember__test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"emissary","response":"success"},{"item":"emoji-flags","response":"success"},{"item":"emoji-js","response":"success"},{"item":"emoji-mart","response":"success"},{"item":"emoji-regex","response":"success"},{"item":"emoji-strip","response":"success"},{"item":"emojione","response":"success"},{"item":"empower","response":"success"},{"item":"empty-dir","response":"success"},{"item":"emscripten","response":"success"},{"item":"encodeurl","response":"success"},{"item":"encoding-down","response":"success"},{"item":"encoding-japanese","response":"success"},{"item":"end-of-stream","response":"success"},{"item":"engine-check","response":"success"},{"item":"engine.io","response":"success"},{"item":"engine.io-client","response":"success"},{"item":"enhanced-resolve","response":"success"},{"item":"enigma.js","response":"success"},{"item":"enquire.js","response":"success"},{"item":"ensure-posix-path","response":"success"},{"item":"ent","response":"success"},{"item":"entities","response":"success"},{"item":"entria__relay-experimental","response":"success"},{"item":"env-ci","response":"success"},{"item":"env-to-object","response":"success"},{"item":"envify","response":"success"},{"item":"enzyme","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-adapter-react-15","response":"success"},{"item":"enzyme-adapter-react-15.4","response":"success"},{"item":"enzyme-adapter-react-16","response":"success"},{"item":"enzyme-async-helpers","response":"success"},{"item":"enzyme-react-intl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-to-json","response":"success"},{"item":"eonasdan-bootstrap-datetimepicker","response":"success"},{"item":"epiceditor","response":"success"},{"item":"epilogue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"epub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"eq.js","response":"success"},{"item":"error-subclass","response":"success"},{"item":"errorhandler","response":"success"},{"item":"es-feature-detection","response":"success"},{"item":"es-module-lexer","response":"success"},{"item":"es-to-primitive","response":"success"},{"item":"es6-collections","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/es6-collections/index.d.ts(22,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(47,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(53,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(67,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(73,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakMap', but here has type 'WeakMap'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(102,24): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(103,48): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakSet', but here has type 'WeakSet'.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(28,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(34,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(54,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(64,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(69,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(87,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\n"},{"item":"es6-promisify","response":"success"},{"item":"es6-set-proptypes","response":"success"},{"item":"es6-shim","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'statements' of undefined\n"},{"item":"es6-weak-map","response":"success"},{"item":"esc-pos-encoder","response":"success"},{"item":"escape-html","response":"success"},{"item":"escape-latex","response":"success"},{"item":"escape-regexp","response":"success"},{"item":"escodegen","response":"success"},{"item":"escpos","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint-plugin-prettier","response":"success"},{"item":"eslint-scope","response":"success"},{"item":"eslint-visitor-keys","response":"success"},{"item":"esm","response":"success"},{"item":"esprima","response":"success"},{"item":"esprima-walk","response":"success"},{"item":"espruino","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'global' must be of type 'any', but here has type 'Global'.\n"},{"item":"esquery","response":"success"},{"item":"esrever","response":"success"},{"item":"esri-leaflet","response":"success"},{"item":"esri-leaflet-geocoder","response":"success"},{"item":"estimate","response":"success"},{"item":"estraverse","response":"success"},{"item":"estree","response":"success"},{"item":"estree-jsx","response":"success"},{"item":"etag","response":"success"},{"item":"eth-lightwallet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eth-sig-util","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ethereum-protocol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"ethereumjs-abi","response":"success"},{"item":"ethjs-signer","response":"success"},{"item":"eureka-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"evaporate","response":"success"},{"item":"event-emitter","response":"success"},{"item":"event-emitter-es6","response":"success"},{"item":"event-hooks-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"event-kit","response":"success"},{"item":"event-loop-lag","response":"success"},{"item":"event-stream","response":"success"},{"item":"event-to-promise","response":"success"},{"item":"events","response":"success"},{"item":"events.once","response":"success"},{"item":"eventsource","response":"success"},{"item":"evernote","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"excel-style-dataformatter","response":"success"},{"item":"exenv","response":"success"},{"item":"exif","response":"success"},{"item":"exit","response":"success"},{"item":"exorcist","response":"success"},{"item":"expand-tilde","response":"success"},{"item":"expect-puppeteer","response":"success"},{"item":"expect.js","response":"success"},{"item":"expectations","response":"success"},{"item":"expired","response":"success"},{"item":"expired-storage","response":"success"},{"item":"expirymanager","response":"success"},{"item":"expo-mixpanel-analytics","response":"success"},{"item":"expo__status-bar-height","response":"success"},{"item":"expo__vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"express","response":"success"},{"item":"express-actuator","response":"success"},{"item":"express-async-wrap","response":"success"},{"item":"express-boom","response":"success"},{"item":"express-brute","response":"success"},{"item":"express-brute-memcached","response":"success"},{"item":"express-brute-mongo","response":"success"},{"item":"express-brute-redis","response":"success"},{"item":"express-bunyan-logger","response":"success"},{"item":"express-busboy","response":"success"},{"item":"express-cluster","response":"success"},{"item":"express-correlation-id","response":"success"},{"item":"express-debug","response":"success"},{"item":"express-domain-middleware","response":"success"},{"item":"express-ejs-layouts","response":"success"},{"item":"express-enforces-ssl","response":"success"},{"item":"express-fileupload","response":"success"},{"item":"express-flash","response":"success"},{"item":"express-flash-2","response":"success"},{"item":"express-flash-notification","response":"success"},{"item":"express-form-data","response":"success"},{"item":"express-formidable","response":"success"},{"item":"express-handlebars","response":"success"},{"item":"express-http-proxy","response":"success"},{"item":"express-jsonschema","response":"success"},{"item":"express-jwt","response":"success"},{"item":"express-less","response":"success"},{"item":"express-list-endpoints","response":"success"},{"item":"express-minify","response":"success"},{"item":"express-mongo-sanitize","response":"success"},{"item":"express-mung","response":"success"},{"item":"express-myconnection","response":"success"},{"item":"express-mysql-session","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-pino-logger","response":"success"},{"item":"express-rate-limit","response":"success"},{"item":"express-redis-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"express-request-id","response":"success"},{"item":"express-route-fs","response":"success"},{"item":"express-routemap","response":"success"},{"item":"express-routes-versioning","response":"success"},{"item":"express-sanitized","response":"success"},{"item":"express-serve-static-core","response":"success"},{"item":"express-session","response":"success"},{"item":"express-sitemap-xml","response":"success"},{"item":"express-slow-down","response":"success"},{"item":"express-socket.io-session","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/express-socket.io-session/index.d.ts(12,27): error TS2694: Namespace 'global.Express' has no exported member 'Session'.\n"},{"item":"express-sslify","response":"success"},{"item":"express-status-monitor","response":"success"},{"item":"express-to-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-unless","response":"success"},{"item":"express-urlrewrite","response":"success"},{"item":"express-useragent","response":"success"},{"item":"express-version-request","response":"success"},{"item":"express-version-route","response":"success"},{"item":"express-wechat-access","response":"success"},{"item":"express-ws","response":"success"},{"item":"express-ws-routes","response":"success"},{"item":"express-xml-bodyparser","response":"success"},{"item":"extend","response":"success"},{"item":"extjs","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"extra-watch-webpack-plugin","response":"success"},{"item":"extract-files","response":"success"},{"item":"extract-text-webpack-plugin","response":"success"},{"item":"extract-zip","response":"success"},{"item":"extsprintf","response":"success"},{"item":"eyes","response":"success"},{"item":"ez-plus","response":"success"},{"item":"f1","response":"success"},{"item":"fabric","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"facebook-instant-games","response":"success"},{"item":"facebook-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"facebook-locales","response":"success"},{"item":"facebook-pixel","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"facepaint","response":"success"},{"item":"factory-girl","response":"success"},{"item":"faker","response":"success"},{"item":"falafel","response":"success"},{"item":"falcor","response":"success"},{"item":"falcor-express","response":"success"},{"item":"falcor-http-datasource","response":"success"},{"item":"falcor-json-graph","response":"success"},{"item":"falcor-router","response":"success"},{"item":"famous","response":"success"},{"item":"fancy-log","response":"success"},{"item":"fancybox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"farbtastic","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"fast-chunk-string","response":"success"},{"item":"fast-html-parser","response":"success"},{"item":"fast-json-stable-stringify","response":"success"},{"item":"fast-levenshtein","response":"success"},{"item":"fast-list","response":"success"},{"item":"fast-memory-cache","response":"success"},{"item":"fast-ratelimit","response":"success"},{"item":"fast-shuffle","response":"success"},{"item":"fast-stats","response":"success"},{"item":"fast-text-encoding","response":"success"},{"item":"fast64","response":"success"},{"item":"fastbitset","response":"success"},{"item":"fastclick","response":"success"},{"item":"fastify-accepts","response":"success"},{"item":"fastify-favicon","response":"success"},{"item":"fastify-rate-limit","response":"success"},{"item":"favico.js","response":"success"},{"item":"favicons","response":"success"},{"item":"favicons-webpack-plugin","response":"success"},{"item":"fb-watchman","response":"success"},{"item":"fbemitter","response":"success"},{"item":"feather-icons","response":"success"},{"item":"feather-route-matcher","response":"success"},{"item":"featherlight","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__authentication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-client","response":"success"},{"item":"feathersjs__authentication-jwt","response":"success"},{"item":"feathersjs__authentication-local","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-oauth1","response":"success"},{"item":"feathersjs__authentication-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__configuration","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__errors","response":"success"},{"item":"feathersjs__express","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__feathers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n"},{"item":"feathersjs__primus","response":"success"},{"item":"feathersjs__primus-client","response":"success"},{"item":"feathersjs__rest-client","response":"success"},{"item":"feathersjs__socket-commons","response":"success"},{"item":"feathersjs__socketio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"feathersjs__socketio-client","response":"success"},{"item":"feedme","response":"success"},{"item":"feedparser","response":"success"},{"item":"fetch-jsonp","response":"success"},{"item":"fetch-mock","response":"success"},{"item":"fetch.io","response":"success"},{"item":"ffi","response":"success"},{"item":"ffi-napi","response":"success"},{"item":"ffmpeg","response":"success"},{"item":"ffmpeg-static","response":"success"},{"item":"ffmpeg.js","response":"success"},{"item":"ffprobe-static","response":"success"},{"item":"fhir","response":"success"},{"item":"fhir-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fhir-kit-client","response":"success"},{"item":"fibers","response":"success"},{"item":"fibjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/fibjs\n../DefinitelyTyped/types/fibjs/declare/assert.d.ts(789,11): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/fibjs/declare/console.d.ts(912,11): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/fibjs/declare/constants.d.ts(212,11): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(383,16): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(601,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(217,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(289,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dns.d.ts(234,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(238,16): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(672,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(214,16): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(314,16): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(508,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(76,8): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(78,8): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(81,8): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(83,8): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(85,8): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(87,8): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(88,8): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(247,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(391,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(222,16): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(476,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/path.d.ts(370,11): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/fibjs/declare/process.d.ts(556,11): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/fibjs/declare/punycode.d.ts(256,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/querystring.d.ts(262,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(215,16): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/timers.d.ts(330,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/tty.d.ts(223,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/url.d.ts(236,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/util.d.ts(983,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/vm.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/zlib.d.ts(520,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/node/assert.d.ts(52,14): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/node/console.d.ts(2,14): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/node/constants.d.ts(7,14): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/node/crypto.d.ts(204,11): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/node/dgram.d.ts(37,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/fs.d.ts(1670,15): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/node/globals.d.ts(143,13): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/node/globals.d.ts(147,13): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/node/globals.d.ts(148,13): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(181,15): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/node/http.d.ts(136,15): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(137,11): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(381,11): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/node/net.d.ts(56,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/os.d.ts(214,11): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/node/path.d.ts(152,14): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/node/process.d.ts(14,14): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/node/string_decoder.d.ts(2,11): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/node/ts3.2/globals.d.ts(10,11): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n"},{"item":"field","response":"success"},{"item":"figlet","response":"success"},{"item":"figma","response":"success"},{"item":"file-entry-cache","response":"success"},{"item":"file-exists","response":"success"},{"item":"file-loader","response":"success"},{"item":"file-saver","response":"success"},{"item":"file-size","response":"success"},{"item":"filesize-parser","response":"success"},{"item":"filesystem","response":"success"},{"item":"filewriter","response":"success"},{"item":"filing-cabinet","response":"success"},{"item":"fill-pdf","response":"success"},{"item":"filter-invalid-dom-props","response":"success"},{"item":"final-form-focus","response":"success"},{"item":"final-form-set-field-data","response":"success"},{"item":"final-form-set-field-touched","response":"success"},{"item":"finalhandler","response":"success"},{"item":"finch","response":"success"},{"item":"find","response":"success"},{"item":"find-cache-dir","response":"success"},{"item":"find-config","response":"success"},{"item":"find-down","response":"success"},{"item":"find-exec","response":"success"},{"item":"find-package-json","response":"success"},{"item":"find-parent-dir","response":"success"},{"item":"find-project-root","response":"success"},{"item":"find-root","response":"success"},{"item":"find-unused-sass-variables","response":"success"},{"item":"findup-sync","response":"success"},{"item":"fined","response":"success"},{"item":"fingerprintjs","response":"success"},{"item":"fingerprintjs2","response":"success"},{"item":"firebase-client","response":"success"},{"item":"firebase-token-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"firebird","response":"success"},{"item":"firefox","response":"success"},{"item":"firefox-webext-browser","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"firmata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"first-mate","response":"success"},{"item":"fixed-data-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"fixed-data-table-2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"flagged-respawn","response":"success"},{"item":"flake-idgen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flat","response":"success"},{"item":"flat-cache","response":"success"},{"item":"flatbuffers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"flatbush","response":"success"},{"item":"fleximap","response":"success"},{"item":"flexmonster","response":"success"},{"item":"flexslider","response":"success"},{"item":"flickity","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flight","response":"success"},{"item":"flightplan","response":"success"},{"item":"flipsnap","response":"success"},{"item":"float-equal","response":"success"},{"item":"float-regex","response":"success"},{"item":"flot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"flowdoc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\nnode_modules/typescript/lib/lib.dom.d.ts(4585,40): error TS2344: Type 'HTMLAnchorElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4658,39): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4703,38): error TS2344: Type 'HTMLAnchorElement | HTMLAreaElement' does not satisfy the constraint 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4725,40): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4737,40): error TS2344: Type 'HTMLScriptElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4961,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4962,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(5331,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(5332,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(6221,11): error TS2430: Interface 'HTMLAnchorElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6475,11): error TS2430: Interface 'HTMLButtonElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6767,11): error TS2430: Interface 'HTMLEmbedElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6801,11): error TS2430: Interface 'HTMLFieldSetElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7304,11): error TS2430: Interface 'HTMLInputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7508,11): error TS2430: Interface 'HTMLLIElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7568,11): error TS2430: Interface 'HTMLLinkElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7981,11): error TS2430: Interface 'HTMLOListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8002,11): error TS2430: Interface 'HTMLObjectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8216,11): error TS2430: Interface 'HTMLOutputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8260,11): error TS2430: Interface 'HTMLParamElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8365,11): error TS2430: Interface 'HTMLScriptElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8414,11): error TS2430: Interface 'HTMLSelectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8529,11): error TS2430: Interface 'HTMLSourceElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8569,11): error TS2430: Interface 'HTMLStyleElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8950,11): error TS2430: Interface 'HTMLTextAreaElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(9120,11): error TS2430: Interface 'HTMLUListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11589,87): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Node'.\n Type 'HTMLAnchorElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11590,86): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Node'.\n Type 'SVGScriptElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(13142,11): error TS2430: Interface 'SVGComponentTransferFunctionElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13323,11): error TS2430: Interface 'SVGFEColorMatrixElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13741,11): error TS2430: Interface 'SVGFETurbulenceElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(14639,11): error TS2430: Interface 'SVGScriptElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(14686,11): error TS2430: Interface 'SVGStyleElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\n"},{"item":"flowjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"fluent","response":"success"},{"item":"fluent-ffmpeg","response":"success"},{"item":"fluent-langneg","response":"success"},{"item":"fluent-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__bundle","response":"success"},{"item":"fluent__dedent","response":"success"},{"item":"fluent__langneg","response":"success"},{"item":"fluent__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__sequence","response":"success"},{"item":"flush-write-stream","response":"success"},{"item":"flushable","response":"success"},{"item":"flux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fluxible","response":"success"},{"item":"fluxible-addons-react","response":"success"},{"item":"fluxible-router","response":"success"},{"item":"fluxxor","response":"success"},{"item":"fm-websync","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fnando__sparkline","response":"success"},{"item":"fnv-lite","response":"success"},{"item":"focus-within","response":"success"},{"item":"follow-redirects","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"fontfaceobserver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"fontkit","response":"success"},{"item":"fontoxml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"force-graph","response":"success"},{"item":"forever-agent","response":"success"},{"item":"forever-monitor","response":"success"},{"item":"forge-apis","response":"success"},{"item":"forge-viewer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"form-serialize","response":"success"},{"item":"form-serializer","response":"success"},{"item":"form-urlencoded","response":"success"},{"item":"format-duration","response":"success"},{"item":"format-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"format-link-header","response":"success"},{"item":"format-unicorn","response":"success"},{"item":"format-util","response":"success"},{"item":"formidable","response":"success"},{"item":"formol","response":"success"},{"item":"forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"forwarded","response":"success"},{"item":"fossil-delta","response":"success"},{"item":"foundation","response":"success"},{"item":"fpsmeter","response":"success"},{"item":"framebus","response":"success"},{"item":"franc","response":"success"},{"item":"frappe-gantt","response":"success"},{"item":"frctl__fractal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n"},{"item":"frecency","response":"success"},{"item":"freedom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"freeport","response":"success"},{"item":"fresh","response":"success"},{"item":"freshy","response":"success"},{"item":"frida-gum","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/frida-gum/index.d.ts(2179,15): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5621,11): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5626,13): error TS2300: Duplicate identifier 'File'.\n"},{"item":"friendly-errors-webpack-plugin","response":"success"},{"item":"frisby","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"from","response":"success"},{"item":"from2","response":"success"},{"item":"fromjs","response":"success"},{"item":"fs-capacitor","response":"success"},{"item":"fs-cson","response":"success"},{"item":"fs-ext","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise-es6","response":"success"},{"item":"fs-finder","response":"success"},{"item":"fs-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fs-plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-readdir-recursive","response":"success"},{"item":"fs-readfile-promise","response":"success"},{"item":"fscreen","response":"success"},{"item":"ftdomdelegate","response":"success"},{"item":"ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ftpd","response":"success"},{"item":"ftps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fullcalendar__vue","response":"success"},{"item":"fullname","response":"success"},{"item":"fullpage.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"function-bind","response":"success"},{"item":"fundamental-react","response":"success"},{"item":"fusioncharts","response":"success"},{"item":"fuzzaldrin","response":"success"},{"item":"fuzzaldrin-plus","response":"success"},{"item":"fuzzy-search","response":"success"},{"item":"fuzzyset","response":"success"},{"item":"fuzzyset.js","response":"success"},{"item":"fxjs","response":"success"},{"item":"fxn","response":"success"},{"item":"gae.channel.api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gamedig","response":"success"},{"item":"gamepad","response":"success"},{"item":"gamequery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"gandi-livedns","response":"success"},{"item":"gapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.auth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.acceleratedmobilepageurl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangeseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexperiencereport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.admin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsense","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsensehost","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analyticsreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androiddeviceprovisioning","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidenterprise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidpublisher","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appengine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appsactivity","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appstate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquerydatatransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.blogger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.books","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.civicinfo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.classroom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbilling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbuild","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouddebugger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouderrorreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudfunctions","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudiot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudkms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudmonitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudresourcemanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtrace","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouduseraccounts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.compute","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.consumersurveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.container","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.content","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.customsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataproc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.deploymentmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dfareporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.discovery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dlp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclickbidmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclicksearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebasedynamiclinks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaseremoteconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaserules","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firestore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fitness","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fusiontables","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.games","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesconfiguration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.genomics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gmail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupsmigration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupssettings","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.iam","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.identitytoolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.kgsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.language","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.licensing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.logging","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.manufacturers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.mirror","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.ml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.monitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oauth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oslogin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.partners","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.photoslibrary","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playcustomapp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playmoviespartner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plusdomains","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.prediction","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.proximitybeacon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pubsub","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.qpxexpress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.reseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.resourceviews","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.runtimeconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.safebrowsing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.script","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.searchconsole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicecontrol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicemanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.serviceuser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sheets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.siteverification","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.slides","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sourcerepo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spectrum","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.speech","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sqladmin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storagetransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.streetviewpublish","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.surveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tagmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.taskqueue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.toolresults","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vault","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.videointelligence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vision","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webfonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webmasters","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubereporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gaussian","response":"success"},{"item":"gaze","response":"success"},{"item":"gc-stats","response":"success"},{"item":"gdal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"geetest","response":"success"},{"item":"gematriya","response":"success"},{"item":"gen-readlines","response":"success"},{"item":"generate-changelog","response":"success"},{"item":"generate-json-webpack-plugin","response":"success"},{"item":"generic-functions","response":"success"},{"item":"generic-pool","response":"success"},{"item":"gently","response":"success"},{"item":"geobuf","response":"success"},{"item":"geodesy","response":"success"},{"item":"geoflatbush","response":"success"},{"item":"geoip-lite","response":"success"},{"item":"geojson","response":"success"},{"item":"geojson2osm","response":"success"},{"item":"geokdbush","response":"success"},{"item":"geolite2","response":"success"},{"item":"geometry-dom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/geometry-dom/index.d.ts(236,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPointReadOnly' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPointReadOnly; prototype: DOMPointReadOnly; fromPoint(other?: DOMPointInit): DOMPointReadOnly; }', but here has type '{ new (x: number, y: number, z: number, w: number): DOMPointReadOnly; prototype: DOMPointReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(241,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPoint' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; fromPoint(other?: DOMPointInit): DOMPoint; }', but here has type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(250,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(254,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(265,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRect' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRect; prototype: DOMRect; fromRect(other?: DOMRectInit): DOMRect; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRect; prototype: DOMRect; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(270,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRectReadOnly' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly; prototype: DOMRectReadOnly; fromRect(other?: DOMRectInit): DOMRectReadOnly; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRectReadOnly; prototype: DOMRectReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(279,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(283,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(287,5): error TS2687: All declarations of 'width' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(291,5): error TS2687: All declarations of 'height' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(299,5): error TS2687: All declarations of 'length' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(307,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMQuad' must be of type '{ new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; fromQuad(other?: DOMQuadInit): DOMQuad; fromRect(other?: DOMRectInit): DOMQuad; }', but here has type '{ new (rect?: DOMRectInit): DOMQuad; new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(313,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrixReadOnly' must be of type '{ new (init?: string | number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly; fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly; fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly; toString(): string; }', but here has type '{ new (numberSequence: number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(318,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrix' must be of type '{ new (init?: string | number[]): DOMMatrix; prototype: DOMMatrix; fromFloat32Array(array32: Float32Array): DOMMatrix; fromFloat64Array(array64: Float64Array): DOMMatrix; fromMatrix(other?: DOMMatrixInit): DOMMatrix; }', but here has type '{ new (): DOMMatrix; new (transformList: string): DOMMatrix; new (other: DOMMatrixReadOnly): DOMMatrix; new (array: number[]): DOMMatrix; new (a: number, b: number, c: number, d: number, e: number, f: number): DOMMatrix; prototype: DOMMatrix; }'.\nnode_modules/typescript/lib/lib.dom.d.ts(348,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(349,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(361,5): error TS2687: All declarations of 'height' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(362,5): error TS2687: All declarations of 'width' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(363,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(364,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(4179,14): error TS2687: All declarations of 'length' must have identical modifiers.\n"},{"item":"geopattern","response":"success"},{"item":"geopoint","response":"success"},{"item":"gestalt","response":"success"},{"item":"get-caller-file","response":"success"},{"item":"get-certain","response":"success"},{"item":"get-emoji","response":"success"},{"item":"get-folder-size","response":"success"},{"item":"get-func-name","response":"success"},{"item":"get-node-dimensions","response":"success"},{"item":"get-res","response":"success"},{"item":"get-value","response":"success"},{"item":"getenv","response":"success"},{"item":"getos","response":"success"},{"item":"getpass","response":"success"},{"item":"gettext-parser","response":"success"},{"item":"gettext.js","response":"success"},{"item":"gfc","response":"success"},{"item":"gh-pages","response":"success"},{"item":"ghauth","response":"success"},{"item":"ghost-storage-base","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"gifffer","response":"success"},{"item":"gijgo","response":"success"},{"item":"giphy-api","response":"success"},{"item":"giraffe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"git","response":"success"},{"item":"git-add-remote","response":"success"},{"item":"git-branch","response":"success"},{"item":"git-branch-is","response":"success"},{"item":"git-config","response":"success"},{"item":"git-config-path","response":"success"},{"item":"git-raw-commits","response":"success"},{"item":"git-repo-name","response":"success"},{"item":"git-rev","response":"success"},{"item":"git-rev-sync","response":"success"},{"item":"git-revision-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"git-root-dir","response":"success"},{"item":"git-semver-tags","response":"success"},{"item":"git-url-parse","response":"success"},{"item":"git-user-email","response":"success"},{"item":"git-user-name","response":"success"},{"item":"git-username","response":"success"},{"item":"gitconfiglocal","response":"success"},{"item":"github-url-from-git","response":"success"},{"item":"github-url-to-object","response":"success"},{"item":"github-username-regex","response":"success"},{"item":"gl","response":"success"},{"item":"gl-fbo","response":"success"},{"item":"gl-matrix","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"gl-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of Parameter - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gl-react-dom","response":"success"},{"item":"gl-react-expo","response":"success"},{"item":"gl-react-headless","response":"success"},{"item":"gl-react-native","response":"success"},{"item":"gl-shader","response":"success"},{"item":"gl-texture2d","response":"success"},{"item":"gl-vec2","response":"success"},{"item":"gl-vec3","response":"success"},{"item":"gl-vec4","response":"success"},{"item":"gldatepicker","response":"success"},{"item":"glidejs","response":"success"},{"item":"glob","response":"success"},{"item":"glob-base","response":"success"},{"item":"glob-expand","response":"success"},{"item":"glob-parent","response":"success"},{"item":"glob-stream","response":"success"},{"item":"glob-to-regexp","response":"success"},{"item":"glob-watcher","response":"success"},{"item":"global-agent","response":"success"},{"item":"global-modules","response":"success"},{"item":"global-modules-path","response":"success"},{"item":"global-npm","response":"success"},{"item":"global-paths","response":"success"},{"item":"global-prefix","response":"success"},{"item":"global-tunnel-ng","response":"success"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize-compiler","response":"success"},{"item":"globalthis","response":"success"},{"item":"globjoin","response":"success"},{"item":"globule","response":"success"},{"item":"glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"gm","response":"success"},{"item":"go","response":"success"},{"item":"good-storage","response":"success"},{"item":"google-adwords-scripts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"google-apps-script","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/google-apps-script\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-apps-script-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-closure-compiler","response":"success"},{"item":"google-cloud__datastore","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-cloud__kms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-cloud__tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"google-cloud__text-to-speech","response":"success"},{"item":"google-ddns","response":"success"},{"item":"google-drive-realtime-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-earth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-fonts","response":"success"},{"item":"google-images","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-libphonenumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-map-react","response":"success"},{"item":"google-maps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-maps-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-protobuf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-translate-api","response":"success"},{"item":"google.analytics","response":"success"},{"item":"google.feeds","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.fonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.geolocation","response":"success"},{"item":"google.picker","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.script.client-side","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.visualization","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google__maps","response":"success"},{"item":"google__markerclustererplus","response":"success"},{"item":"googlemaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlemaps.infobubble","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlepay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"got","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"graceful-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gradient-string","response":"success"},{"item":"graham_scan","response":"success"},{"item":"gramps__rest-helpers","response":"success"},{"item":"graphite","response":"success"},{"item":"graphite-udp","response":"success"},{"item":"graphlib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"graphlib-dot","response":"success"},{"item":"graphql-api-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphql-bigint","response":"success"},{"item":"graphql-date","response":"success"},{"item":"graphql-deduplicator","response":"success"},{"item":"graphql-depth-limit","response":"success"},{"item":"graphql-errors","response":"success"},{"item":"graphql-fields","response":"success"},{"item":"graphql-iso-date","response":"success"},{"item":"graphql-list-fields","response":"success"},{"item":"graphql-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"graphql-relay","response":"success"},{"item":"graphql-resolve-batch","response":"success"},{"item":"graphql-resolvers","response":"success"},{"item":"graphql-type-json","response":"success"},{"item":"graphql-type-uuid","response":"success"},{"item":"graphql-upload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphviz","response":"success"},{"item":"grasp","response":"success"},{"item":"gravatar","response":"success"},{"item":"gray-percentage","response":"success"},{"item":"graylog2","response":"success"},{"item":"greasemonkey","response":"success"},{"item":"grecaptcha","response":"success"},{"item":"gregorian-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"gremlin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"grid-template-parser","response":"success"},{"item":"gridfs-stream","response":"success"},{"item":"group-array","response":"success"},{"item":"growing-io","response":"success"},{"item":"grpc-error","response":"success"},{"item":"grunt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"gsap","response":"success"},{"item":"gtag.js","response":"success"},{"item":"gtin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"guardian__prosemirror-invisibles","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"guid","response":"success"},{"item":"gulp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"gulp-angular-templatecache","response":"success"},{"item":"gulp-autoprefixer","response":"success"},{"item":"gulp-babel","response":"success"},{"item":"gulp-batch","response":"success"},{"item":"gulp-bump","response":"success"},{"item":"gulp-cache","response":"success"},{"item":"gulp-cached","response":"success"},{"item":"gulp-change","response":"success"},{"item":"gulp-changed","response":"success"},{"item":"gulp-cheerio","response":"success"},{"item":"gulp-clean-dest","response":"success"},{"item":"gulp-coffeeify","response":"success"},{"item":"gulp-coffeelint","response":"success"},{"item":"gulp-concat","response":"success"},{"item":"gulp-connect","response":"success"},{"item":"gulp-copy","response":"success"},{"item":"gulp-csso","response":"success"},{"item":"gulp-debug","response":"success"},{"item":"gulp-diff","response":"success"},{"item":"gulp-dtsm","response":"success"},{"item":"gulp-espower","response":"success"},{"item":"gulp-file-include","response":"success"},{"item":"gulp-filter","response":"success"},{"item":"gulp-flatten","response":"success"},{"item":"gulp-gh-pages","response":"success"},{"item":"gulp-gzip","response":"success"},{"item":"gulp-header","response":"success"},{"item":"gulp-help","response":"success"},{"item":"gulp-help-doc","response":"success"},{"item":"gulp-html-prettify","response":"success"},{"item":"gulp-html-replace","response":"success"},{"item":"gulp-htmlmin","response":"success"},{"item":"gulp-if","response":"success"},{"item":"gulp-image","response":"success"},{"item":"gulp-image-resize","response":"success"},{"item":"gulp-imagemin","response":"success"},{"item":"gulp-inject","response":"success"},{"item":"gulp-insert","response":"success"},{"item":"gulp-install","response":"success"},{"item":"gulp-intercept","response":"success"},{"item":"gulp-istanbul","response":"success"},{"item":"gulp-jade","response":"success"},{"item":"gulp-jasmine","response":"success"},{"item":"gulp-jasmine-browser","response":"success"},{"item":"gulp-json-editor","response":"success"},{"item":"gulp-json-validator","response":"success"},{"item":"gulp-jsonmin","response":"success"},{"item":"gulp-jsonminify","response":"success"},{"item":"gulp-jspm","response":"success"},{"item":"gulp-less","response":"success"},{"item":"gulp-load-plugins","response":"success"},{"item":"gulp-minify-css","response":"success"},{"item":"gulp-minify-html","response":"success"},{"item":"gulp-mocha","response":"success"},{"item":"gulp-modernizr","response":"success"},{"item":"gulp-msbuild","response":"success"},{"item":"gulp-mustache","response":"success"},{"item":"gulp-newer","response":"success"},{"item":"gulp-ng-annotate","response":"success"},{"item":"gulp-nodemon","response":"success"},{"item":"gulp-nunit-runner","response":"success"},{"item":"gulp-plumber","response":"success"},{"item":"gulp-postcss","response":"success"},{"item":"gulp-protractor","response":"success"},{"item":"gulp-pug-i18n","response":"success"},{"item":"gulp-remember","response":"success"},{"item":"gulp-rename","response":"success"},{"item":"gulp-replace","response":"success"},{"item":"gulp-responsive-images","response":"success"},{"item":"gulp-rev","response":"success"},{"item":"gulp-rev-replace","response":"success"},{"item":"gulp-ruby-sass","response":"success"},{"item":"gulp-sass","response":"success"},{"item":"gulp-sass-variables","response":"success"},{"item":"gulp-sequence","response":"success"},{"item":"gulp-size","response":"success"},{"item":"gulp-sort","response":"success"},{"item":"gulp-sourcemaps","response":"success"},{"item":"gulp-strip-comments","response":"success"},{"item":"gulp-strip-debug","response":"success"},{"item":"gulp-stylus","response":"success"},{"item":"gulp-svg-sprite","response":"success"},{"item":"gulp-svgmin","response":"success"},{"item":"gulp-tap","response":"success"},{"item":"gulp-task-listing","response":"success"},{"item":"gulp-template","response":"success"},{"item":"gulp-terser","response":"success"},{"item":"gulp-tsd","response":"success"},{"item":"gulp-uglify","response":"success"},{"item":"gulp-useref","response":"success"},{"item":"gulp-util","response":"success"},{"item":"gulp-watch","response":"success"},{"item":"gulp-zip","response":"success"},{"item":"gun","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"gyronorm","response":"success"},{"item":"gzip-js","response":"success"},{"item":"h2o2","response":"success"},{"item":"halfred","response":"success"},{"item":"halogen","response":"success"},{"item":"halogenium","response":"success"},{"item":"hammerjs","response":"success"},{"item":"handlebars-helpers","response":"success"},{"item":"hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi-auth-basic","response":"success"},{"item":"hapi-auth-bearer-token","response":"success"},{"item":"hapi-auth-cookie","response":"success"},{"item":"hapi-decorators","response":"success"},{"item":"hapi-pino","response":"success"},{"item":"hapi-server-session","response":"success"},{"item":"hapi__b64","response":"success"},{"item":"hapi__basic","response":"success"},{"item":"hapi__bell","response":"success"},{"item":"hapi__catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__catbox-memcached","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"hapi__catbox-memory","response":"success"},{"item":"hapi__catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"hapi__cookie","response":"success"},{"item":"hapi__crumb","response":"success"},{"item":"hapi__glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__h2o2","response":"success"},{"item":"hapi__hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__hawk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__inert","response":"success"},{"item":"hapi__joi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"hapi__mimos","response":"success"},{"item":"hapi__nes","response":"success"},{"item":"hapi__podium","response":"success"},{"item":"hapi__shot","response":"success"},{"item":"hapi__sntp","response":"success"},{"item":"hapi__vision","response":"success"},{"item":"hapi__yar","response":"success"},{"item":"happypack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"har-format","response":"success"},{"item":"hard-source-webpack-plugin","response":"success"},{"item":"hark","response":"success"},{"item":"harmon","response":"success"},{"item":"harmony-proxy","response":"success"},{"item":"has-ansi","response":"success"},{"item":"hash-file","response":"success"},{"item":"hash-it","response":"success"},{"item":"hash-stream","response":"success"},{"item":"hash-sum","response":"success"},{"item":"hasher","response":"success"},{"item":"hashids","response":"success"},{"item":"hashmap","response":"success"},{"item":"hashring","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"hashset","response":"success"},{"item":"hashtable","response":"success"},{"item":"hashtag-regex","response":"success"},{"item":"hast","response":"success"},{"item":"hat","response":"success"},{"item":"haversine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hdkey","response":"success"},{"item":"he","response":"success"},{"item":"headroom","response":"success"},{"item":"heap","response":"success"},{"item":"heapdump","response":"success"},{"item":"heatmap.js","response":"success"},{"item":"hedron","response":"success"},{"item":"hellojs","response":"success"},{"item":"hellosign-embedded","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"helmet","response":"success"},{"item":"heredatalens","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heremaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heroku-logger","response":"success"},{"item":"hex-rgba","response":"success"},{"item":"hexo","response":"success"},{"item":"hexo-bunyan","response":"success"},{"item":"hexo-fs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"hexo-log","response":"success"},{"item":"hexo-util","response":"success"},{"item":"hh-mm-ss","response":"success"},{"item":"hig__button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"highcharts-ng","response":"success"},{"item":"highland","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"highlight-words-core","response":"success"},{"item":"highlight.js","response":"success"},{"item":"highlightjs","response":"success"},{"item":"hiredis","response":"success"},{"item":"hirestime","response":"success"},{"item":"history","response":"success"},{"item":"history.js","response":"success"},{"item":"historykana","response":"success"},{"item":"hjson","response":"success"},{"item":"hls-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hls.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"hoek","response":"success"},{"item":"hogan.js","response":"success"},{"item":"hoist-non-react-statics","response":"success"},{"item":"holderjs","response":"success"},{"item":"honeybadger","response":"success"},{"item":"hooker","response":"success"},{"item":"hookrouter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hopscotch","response":"success"},{"item":"host-validation","response":"success"},{"item":"hosted-git-info","response":"success"},{"item":"hostile","response":"success"},{"item":"howler","response":"success"},{"item":"hoxy","response":"success"},{"item":"hpp","response":"success"},{"item":"html-entities","response":"success"},{"item":"html-minifier","response":"success"},{"item":"html-minifier-terser","response":"success"},{"item":"html-parser","response":"success"},{"item":"html-pdf","response":"success"},{"item":"html-tag-names","response":"success"},{"item":"html-to-draftjs","response":"success"},{"item":"html-to-text","response":"success"},{"item":"html-truncate","response":"success"},{"item":"html-validator","response":"success"},{"item":"html-void-elements","response":"success"},{"item":"html-webpack-plugin","response":"success"},{"item":"html-webpack-template","response":"success"},{"item":"html2canvas","response":"success"},{"item":"html5-history","response":"success"},{"item":"html5-to-pdf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"html5plus","response":"success"},{"item":"htmlbars-inline-precompile","response":"success"},{"item":"htmlescape","response":"success"},{"item":"htmlhint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"htmlparser2","response":"success"},{"item":"htmltojsx","response":"success"},{"item":"http-assert","response":"success"},{"item":"http-aws-es","response":"success"},{"item":"http-build-query","response":"success"},{"item":"http-cache-semantics","response":"success"},{"item":"http-codes","response":"success"},{"item":"http-context","response":"success"},{"item":"http-errors","response":"success"},{"item":"http-link-header","response":"success"},{"item":"http-proxy","response":"success"},{"item":"http-proxy-agent","response":"success"},{"item":"http-proxy-middleware","response":"success"},{"item":"http-rx","response":"success"},{"item":"http-server","response":"success"},{"item":"http-string-parser","response":"success"},{"item":"httperr","response":"success"},{"item":"hubot","response":"success"},{"item":"hubspot-pace","response":"success"},{"item":"human-date","response":"success"},{"item":"human-interval","response":"success"},{"item":"humane-js","response":"success"},{"item":"humanize-duration","response":"success"},{"item":"humanize-ms","response":"success"},{"item":"humanize-plus","response":"success"},{"item":"humanparser","response":"success"},{"item":"hummus-recipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"humps","response":"success"},{"item":"hyco-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"hyper-aws4","response":"success"},{"item":"hyperscript","response":"success"},{"item":"hypertext-application-language","response":"success"},{"item":"hystrixjs","response":"success"},{"item":"i18n","response":"success"},{"item":"i18n-abide","response":"success"},{"item":"i18n-js","response":"success"},{"item":"i18next-ko","response":"success"},{"item":"i18next-node-fs-backend","response":"success"},{"item":"i18next-sprintf-postprocessor","response":"success"},{"item":"i2c-bus","response":"success"},{"item":"iab-vpaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iarna__toml","response":"success"},{"item":"iban","response":"success"},{"item":"ibm-mobilefirst","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ibm-openapi-validator","response":"success"},{"item":"ibm_db","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ical","response":"success"},{"item":"icepick","response":"success"},{"item":"icheck","response":"success"},{"item":"icon-gen","response":"success"},{"item":"iconv","response":"success"},{"item":"icss-utils","response":"success"},{"item":"identicon.js","response":"success"},{"item":"idyll","response":"success"},{"item":"idyll-ast","response":"success"},{"item":"idyll-compiler","response":"success"},{"item":"idyll-document","response":"success"},{"item":"iferr","response":"success"},{"item":"iframe-resizer","response":"success"},{"item":"ifvisible","response":"success"},{"item":"igdb-api-node","response":"success"},{"item":"ignite-ui","response":"success"},{"item":"ignore-styles","response":"success"},{"item":"ignore-walk","response":"success"},{"item":"iltorb","response":"success"},{"item":"image-thumbnail","response":"success"},{"item":"imagemagick","response":"success"},{"item":"imagemagick-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imagemapster","response":"success"},{"item":"imagemin","response":"success"},{"item":"imagemin-gifsicle","response":"success"},{"item":"imagemin-jpegtran","response":"success"},{"item":"imagemin-mozjpeg","response":"success"},{"item":"imagemin-optipng","response":"success"},{"item":"imagemin-pngquant","response":"success"},{"item":"imagemin-svgo","response":"success"},{"item":"imagemin-webp","response":"success"},{"item":"images","response":"success"},{"item":"imagesloaded","response":"success"},{"item":"imap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"imap-simple","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imgur-rest-api","response":"success"},{"item":"immediate","response":"success"},{"item":"imperium","response":"success"},{"item":"impress","response":"success"},{"item":"imsi-grok","response":"success"},{"item":"imul","response":"success"},{"item":"imurmurhash","response":"success"},{"item":"in-app-purchase","response":"success"},{"item":"inboxsdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"incremental-dom","response":"success"},{"item":"indefinite","response":"success"},{"item":"inert","response":"success"},{"item":"ineum","response":"success"},{"item":"inflation","response":"success"},{"item":"inflected","response":"success"},{"item":"inflection","response":"success"},{"item":"infobox-parser","response":"success"},{"item":"inherits","response":"success"},{"item":"ini","response":"success"},{"item":"iniparser","response":"success"},{"item":"init-package-json","response":"success"},{"item":"ink-select-input","response":"success"},{"item":"ink-spinner","response":"success"},{"item":"ink-table","response":"success"},{"item":"ink-testing-library","response":"success"},{"item":"ink-text-input","response":"success"},{"item":"inline-critical","response":"success"},{"item":"inline-css","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"inline-style-prefixer","response":"success"},{"item":"input-moment","response":"success"},{"item":"inputmask","response":"success"},{"item":"inquirer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"inquirer-npm-name","response":"success"},{"item":"insert-css","response":"success"},{"item":"insert-module-globals","response":"success"},{"item":"insert-text-at-cursor","response":"success"},{"item":"insight","response":"success"},{"item":"inspectlet-es","response":"success"},{"item":"integer","response":"success"},{"item":"integrate-adaptive-simpson","response":"success"},{"item":"intercept-stdout","response":"success"},{"item":"intercom-client","response":"success"},{"item":"intercom-web","response":"success"},{"item":"intercomjs","response":"success"},{"item":"interface-datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"internal-slot","response":"success"},{"item":"interpret","response":"success"},{"item":"intersects","response":"success"},{"item":"intersperse","response":"success"},{"item":"intl","response":"success"},{"item":"intl-tel-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/intl-tel-input/index.d.ts(125,30): error TS2304: Cannot find name 'JQueryDeferred'.\n"},{"item":"intrinsic-scale","response":"success"},{"item":"intro.js","response":"success"},{"item":"invariant","response":"success"},{"item":"inversify-devtools","response":"success"},{"item":"iobroker","response":"success"},{"item":"ion-rangeslider","response":"success"},{"item":"iopipe__iopipe","response":"success"},{"item":"ioredis","response":"success"},{"item":"iost-contract","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/iost-contract"},{"item":"iota.lib.js","response":"success"},{"item":"ip","response":"success"},{"item":"ip-address","response":"success"},{"item":"ip-subnet-calculator","response":"success"},{"item":"ipcheck","response":"success"},{"item":"irc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iri","response":"success"},{"item":"iron","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"is","response":"success"},{"item":"is-absolute","response":"success"},{"item":"is-alphanumerical","response":"success"},{"item":"is-array","response":"success"},{"item":"is-base64","response":"success"},{"item":"is-blank","response":"success"},{"item":"is-buffer","response":"success"},{"item":"is-callable","response":"success"},{"item":"is-charging","response":"success"},{"item":"is-ci","response":"success"},{"item":"is-color","response":"success"},{"item":"is-date-object","response":"success"},{"item":"is-dotdir","response":"success"},{"item":"is-dotfile","response":"success"},{"item":"is-empty","response":"success"},{"item":"is-empty-object","response":"success"},{"item":"is-even","response":"success"},{"item":"is-finite","response":"success"},{"item":"is-function","response":"success"},{"item":"is-generator","response":"success"},{"item":"is-generator-function","response":"success"},{"item":"is-git-url","response":"success"},{"item":"is-glob","response":"success"},{"item":"is-hotkey","response":"success"},{"item":"is-integer","response":"success"},{"item":"is-my-json-valid","response":"success"},{"item":"is-natural-number","response":"success"},{"item":"is-negated-glob","response":"success"},{"item":"is-number","response":"success"},{"item":"is-number-like","response":"success"},{"item":"is-object","response":"success"},{"item":"is-odd","response":"success"},{"item":"is-progressive","response":"success"},{"item":"is-promise","response":"success"},{"item":"is-relative","response":"success"},{"item":"is-relative-path","response":"success"},{"item":"is-running","response":"success"},{"item":"is-ssh","response":"success"},{"item":"is-touch-device","response":"success"},{"item":"is-trademarked","response":"success"},{"item":"is-typedarray","response":"success"},{"item":"is-unc-path","response":"success"},{"item":"is-url","response":"success"},{"item":"is-uuid","response":"success"},{"item":"is-valid-glob","response":"success"},{"item":"is-valid-path","response":"success"},{"item":"is-windows","response":"success"},{"item":"isaac","response":"success"},{"item":"isarray","response":"success"},{"item":"isbn-utils","response":"success"},{"item":"iscroll","response":"success"},{"item":"isexe","response":"success"},{"item":"iso-3166-2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iso8601-localizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"isomorphic-fetch","response":"success"},{"item":"isomorphic-form-data","response":"success"},{"item":"isotope-layout","response":"success"},{"item":"isstream","response":"success"},{"item":"issue-parser","response":"success"},{"item":"istanbul","response":"success"},{"item":"istanbul-lib-coverage","response":"success"},{"item":"istanbul-lib-hook","response":"success"},{"item":"istanbul-lib-instrument","response":"success"},{"item":"istanbul-lib-report","response":"success"},{"item":"istanbul-lib-source-maps","response":"success"},{"item":"istanbul-middleware","response":"success"},{"item":"istanbul-reports","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"istextorbinary","response":"success"},{"item":"it-all","response":"success"},{"item":"it-pushable","response":"success"},{"item":"ityped","response":"success"},{"item":"ix.js","response":"success"},{"item":"jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"jade","response":"success"},{"item":"jaeger-client","response":"success"},{"item":"jake","response":"success"},{"item":"jalaali-js","response":"success"},{"item":"japan-postal-code","response":"success"},{"item":"japanese-holidays","response":"success"},{"item":"jasmine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'statements' of undefined\n"},{"item":"jasmine-ajax","response":"success"},{"item":"jasmine-data-provider","response":"success"},{"item":"jasmine-data_driven_tests","response":"success"},{"item":"jasmine-enzyme","response":"success"},{"item":"jasmine-es6-promise-matchers","response":"success"},{"item":"jasmine-fixture","response":"success"},{"item":"jasmine-given","response":"success"},{"item":"jasmine-jquery","response":"success"},{"item":"jasmine-matchers","response":"success"},{"item":"jasmine-node","response":"success"},{"item":"jasmine-promise-matchers","response":"success"},{"item":"jasmine_dom_matchers","response":"success"},{"item":"jasminewd2","response":"success"},{"item":"java","response":"success"},{"item":"java-applet","response":"success"},{"item":"javascript-astar","response":"success"},{"item":"javascript-bignum","response":"success"},{"item":"javascript-state-machine","response":"success"},{"item":"javascript-time-ago","response":"success"},{"item":"jbinary","response":"success"},{"item":"jcanvas","response":"success"},{"item":"jdataview","response":"success"},{"item":"jee-jsf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jenkins","response":"success"},{"item":"jest","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"jest-axe","response":"success"},{"item":"jest-cucumber-fusion","response":"success"},{"item":"jest-dev-server","response":"success"},{"item":"jest-environment-puppeteer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/environment/build/index.d.ts(11,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/jest-environment-puppeteer/node_modules/jest-mock/build/index\"' can only be default-imported using the 'esModuleInterop' flag\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/source-map/build/getCallsite.d.ts(8,100): error TS2503: Cannot find namespace 'callsites'.\n"},{"item":"jest-expect-message","response":"success"},{"item":"jest-image-snapshot","response":"success"},{"item":"jest-in-case","response":"success"},{"item":"jest-json-schema","response":"success"},{"item":"jest-matcher-one-of","response":"success"},{"item":"jest-plugin-context","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/jest-plugin-context"},{"item":"jest-plugin-set","response":"success"},{"item":"jest-sinon","response":"success"},{"item":"jest-specific-snapshot","response":"success"},{"item":"jest-when","response":"success"},{"item":"jexl","response":"success"},{"item":"jfp","response":"success"},{"item":"jfs","response":"success"},{"item":"jira-client","response":"success"},{"item":"jju","response":"success"},{"item":"jjv","response":"success"},{"item":"jjve","response":"success"},{"item":"jmespath","response":"success"},{"item":"johnny-five","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"joi","response":"success"},{"item":"joi-password-complexity","response":"success"},{"item":"joigoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"josa","response":"success"},{"item":"jotform-css.js","response":"success"},{"item":"jpeg-autorotate","response":"success"},{"item":"jpegtran-bin","response":"success"},{"item":"jpm","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jqgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jqrangeslider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-ajax-chain","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-alertable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-animate-scroll","response":"success"},{"item":"jquery-awesome-cursor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-backstretch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-countdown","response":"success"},{"item":"jquery-countto","response":"success"},{"item":"jquery-cropbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-cropper","response":"success"},{"item":"jquery-deferred","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery-deparam","response":"success"},{"item":"jquery-drawer","response":"success"},{"item":"jquery-easy-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-editable-select","response":"success"},{"item":"jquery-focus-exit","response":"success"},{"item":"jquery-focusable","response":"success"},{"item":"jquery-formatdatetime","response":"success"},{"item":"jquery-fullscreen","response":"success"},{"item":"jquery-galleria","response":"success"},{"item":"jquery-gray","response":"success"},{"item":"jquery-handsontable","response":"success"},{"item":"jquery-jcrop","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jquery-jsonrpcclient","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-knob","response":"success"},{"item":"jquery-lazyload","response":"success"},{"item":"jquery-loading-overlay","response":"success"},{"item":"jquery-mask-plugin","response":"success"},{"item":"jquery-maskmoney","response":"success"},{"item":"jquery-match-height","response":"success"},{"item":"jquery-migrate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mockjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mouse-exit","response":"success"},{"item":"jquery-mousewheel","response":"success"},{"item":"jquery-next-id","response":"success"},{"item":"jquery-param","response":"success"},{"item":"jquery-slimscroll","response":"success"},{"item":"jquery-slugify","response":"success"},{"item":"jquery-sortable","response":"success"},{"item":"jquery-steps","response":"success"},{"item":"jquery-sticky","response":"success"},{"item":"jquery-tags-input","response":"success"},{"item":"jquery-timeentry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toast-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toastmessage-plugin","response":"success"},{"item":"jquery-truncate-html","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-typeahead","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-urlparam","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-validation-unobtrusive","response":"success"},{"item":"jquery.address","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.appear","response":"success"},{"item":"jquery.are-you-sure","response":"success"},{"item":"jquery.autosize","response":"success"},{"item":"jquery.base64","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bbq","response":"success"},{"item":"jquery.blockui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bootstrap.wizard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.browser","response":"success"},{"item":"jquery.cleditor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.clientsidelogging","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorpicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.contextmenu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.cookie","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.customselect","response":"success"},{"item":"jquery.cycle","response":"success"},{"item":"jquery.cycle2","response":"success"},{"item":"jquery.dropotron","response":"success"},{"item":"jquery.dynatree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.elang","response":"success"},{"item":"jquery.fancytree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fileupload","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.filtertable","response":"success"},{"item":"jquery.finger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.flagstrap","response":"success"},{"item":"jquery.form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fullscreen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.gridster","response":"success"},{"item":"jquery.growl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"jquery.highlight-bartaz","response":"success"},{"item":"jquery.jnotify","response":"success"},{"item":"jquery.joyride","response":"success"},{"item":"jquery.jsignature","response":"success"},{"item":"jquery.leanmodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.livestampjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery.menuaim","response":"success"},{"item":"jquery.mmenu","response":"success"},{"item":"jquery.nicescroll","response":"success"},{"item":"jquery.notify","response":"success"},{"item":"jquery.notifybar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.noty","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'kind' of undefined\n"},{"item":"jquery.payment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.pin","response":"success"},{"item":"jquery.pjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.placeholder","response":"success"},{"item":"jquery.pnotify","response":"success"},{"item":"jquery.postmessage","response":"success"},{"item":"jquery.prettyphoto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.qrcode","response":"success"},{"item":"jquery.rateit","response":"success"},{"item":"jquery.rowgrid","response":"success"},{"item":"jquery.scrollto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplemodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplepagination","response":"success"},{"item":"jquery.simulate","response":"success"},{"item":"jquery.soap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.sortelements","response":"success"},{"item":"jquery.stickem","response":"success"},{"item":"jquery.superlink","response":"success"},{"item":"jquery.tagsmanager","response":"success"},{"item":"jquery.tile","response":"success"},{"item":"jquery.timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.tinycarousel","response":"success"},{"item":"jquery.tinyscrollbar","response":"success"},{"item":"jquery.tipsy","response":"success"},{"item":"jquery.tools","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.total-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.transit","response":"success"},{"item":"jquery.ui.datetimepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.ui.layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.uniform","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.validation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.watermark","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquerymobile","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jqueryui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"js-base64","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"js-beautify","response":"success"},{"item":"js-captcha","response":"success"},{"item":"js-clipper","response":"success"},{"item":"js-combinatorics","response":"success"},{"item":"js-cookie","response":"success"},{"item":"js-data-angular","response":"success"},{"item":"js-fixtures","response":"success"},{"item":"js-git","response":"success"},{"item":"js-levenshtein","response":"success"},{"item":"js-md5","response":"success"},{"item":"js-money","response":"success"},{"item":"js-nacl","response":"success"},{"item":"js-priority-queue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"js-quantities","response":"success"},{"item":"js-roman-numerals","response":"success"},{"item":"js-schema","response":"success"},{"item":"js-search","response":"success"},{"item":"js-sha512","response":"success"},{"item":"js-string-escape","response":"success"},{"item":"js-to-java","response":"success"},{"item":"js-url","response":"success"},{"item":"js-yaml","response":"success"},{"item":"js.spec","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsbn","response":"success"},{"item":"jschannel","response":"success"},{"item":"jscodeshift","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"jscrollpane","response":"success"},{"item":"jsdeferred","response":"success"},{"item":"jsdoc-to-markdown","response":"success"},{"item":"jsdom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsdom-global","response":"success"},{"item":"jsen","response":"success"},{"item":"jsend","response":"success"},{"item":"jsesc","response":"success"},{"item":"jsfl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'kind' of undefined\n"},{"item":"jsforce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsftp","response":"success"},{"item":"jsgraph","response":"success"},{"item":"jshamcrest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsmediatags","response":"success"},{"item":"jsmockito","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsnox","response":"success"},{"item":"json-buffer","response":"success"},{"item":"json-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"json-file-plus","response":"success"},{"item":"json-form-data","response":"success"},{"item":"json-js","response":"success"},{"item":"json-merge-patch","response":"success"},{"item":"json-parse-better-errors","response":"success"},{"item":"json-patch","response":"success"},{"item":"json-patch-gen","response":"success"},{"item":"json-pointer","response":"success"},{"item":"json-query","response":"success"},{"item":"json-rpc-random-id","response":"success"},{"item":"json-rpc-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"json-schema","response":"success"},{"item":"json-schema-compare","response":"success"},{"item":"json-schema-merge-allof","response":"success"},{"item":"json-schema-traverse","response":"success"},{"item":"json-server","response":"success"},{"item":"json-socket","response":"success"},{"item":"json-stable-stringify","response":"success"},{"item":"json-stream-stringify","response":"success"},{"item":"json-stringify-safe","response":"success"},{"item":"json-to-ast","response":"success"},{"item":"json2csv","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"json2md","response":"success"},{"item":"json2mq","response":"success"},{"item":"json3","response":"success"},{"item":"json5","response":"success"},{"item":"json8-patch","response":"success"},{"item":"json_ml","response":"success"},{"item":"jsonabc","response":"success"},{"item":"jsonapi-serializer","response":"success"},{"item":"jsoneditor","response":"success"},{"item":"jsoneditor-for-react","response":"success"},{"item":"jsoneditoronline","response":"success"},{"item":"jsonfile","response":"success"},{"item":"jsonic","response":"success"},{"item":"jsonld","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonminify","response":"success"},{"item":"jsonnet","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsonp","response":"success"},{"item":"jsonpack","response":"success"},{"item":"jsonpath","response":"success"},{"item":"jsonpointer","response":"success"},{"item":"jsonquery","response":"success"},{"item":"jsonrpc-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonstream","response":"success"},{"item":"jsontoxml","response":"success"},{"item":"jsonwebtoken","response":"success"},{"item":"jsonwebtoken-promisified","response":"success"},{"item":"jspath","response":"success"},{"item":"jspdf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsprintmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsqrcode","response":"success"},{"item":"jsqubits","response":"success"},{"item":"jsreport-chrome-pdf","response":"success"},{"item":"jsreport-core","response":"success"},{"item":"jsreport-html-embedded-in-docx","response":"success"},{"item":"jsreport-html-to-xlsx","response":"success"},{"item":"jsreport-jsrender","response":"success"},{"item":"jsreport-phantom-pdf","response":"success"},{"item":"jsreport-xlsx","response":"success"},{"item":"jsrp","response":"success"},{"item":"jsrsasign","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jssha","response":"success"},{"item":"jssip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsspec__jsspec","response":"success"},{"item":"jstimezonedetect","response":"success"},{"item":"jstorage","response":"success"},{"item":"jstree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsuite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsum","response":"success"},{"item":"jsuri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"jsurl","response":"success"},{"item":"jsx-chai","response":"success"},{"item":"jszip","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"jug","response":"success"},{"item":"jui","response":"success"},{"item":"jui-core","response":"success"},{"item":"jui-grid","response":"success"},{"item":"jump.js","response":"success"},{"item":"just-clone","response":"success"},{"item":"just-debounce-it","response":"success"},{"item":"just-extend","response":"success"},{"item":"just-map-values","response":"success"},{"item":"just-pick","response":"success"},{"item":"just-safe-get","response":"success"},{"item":"just-safe-set","response":"success"},{"item":"just-snake-case","response":"success"},{"item":"just-throttle","response":"success"},{"item":"jweixin","response":"success"},{"item":"jwk-to-pem","response":"success"},{"item":"jwplayer","response":"success"},{"item":"jws","response":"success"},{"item":"jwt-client","response":"success"},{"item":"jwt-decode","response":"success"},{"item":"jwt-express","response":"success"},{"item":"jwt-simple","response":"success"},{"item":"jwt-then","response":"success"},{"item":"jxon","response":"success"},{"item":"k6","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\n\n../DefinitelyTyped/types/k6/global.d.ts(53,9): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\nnode_modules/typescript/lib/lib.dom.d.ts(19729,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n"},{"item":"kafka-node-avro","response":"success"},{"item":"kamailio-kemi","response":"success"},{"item":"kap-plugin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"karma","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"karma-brief-reporter","response":"success"},{"item":"karma-browserify","response":"success"},{"item":"karma-browserstack-launcher","response":"success"},{"item":"karma-chai","response":"success"},{"item":"karma-chai-sinon","response":"success"},{"item":"karma-chrome-launcher","response":"success"},{"item":"karma-coverage","response":"success"},{"item":"karma-coverage-istanbul-reporter","response":"success"},{"item":"karma-detect-browsers","response":"success"},{"item":"karma-env-preprocessor","response":"success"},{"item":"karma-firefox-launcher","response":"success"},{"item":"karma-fixture","response":"success"},{"item":"karma-html-detailed-reporter","response":"success"},{"item":"karma-ie-launcher","response":"success"},{"item":"karma-jasmine","response":"success"},{"item":"karma-jasmine-html-reporter","response":"success"},{"item":"karma-jasmine-spec-tags","response":"success"},{"item":"karma-jsdom-launcher","response":"success"},{"item":"karma-json-preprocessor","response":"success"},{"item":"karma-json-to-file-reporter","response":"success"},{"item":"karma-junit-reporter","response":"success"},{"item":"karma-material-reporter","response":"success"},{"item":"karma-mocha","response":"success"},{"item":"karma-mocha-reporter","response":"success"},{"item":"karma-parallel","response":"success"},{"item":"karma-remap-coverage","response":"success"},{"item":"karma-snapshot","response":"success"},{"item":"karma-spec-reporter","response":"success"},{"item":"karma-summary-reporter","response":"success"},{"item":"karma-webpack","response":"success"},{"item":"katex","response":"success"},{"item":"kcors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"kd-tree-javascript","response":"success"},{"item":"kdbush","response":"success"},{"item":"kdbxweb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"keen-tracking","response":"success"},{"item":"kefir","response":"success"},{"item":"kendo-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"kerberos","response":"success"},{"item":"keyboardjs","response":"success"},{"item":"keycloak-connect","response":"success"},{"item":"keygrip","response":"success"},{"item":"keymaster","response":"success"},{"item":"keymirror","response":"success"},{"item":"keypress.js","response":"success"},{"item":"keystonejs__adapter-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"keystonejs__adapter-mongoose","response":"success"},{"item":"keystonejs__apollo-helpers","response":"success"},{"item":"keystonejs__app-admin-ui","response":"success"},{"item":"keystonejs__app-graphql","response":"success"},{"item":"keystonejs__app-next","response":"success"},{"item":"keystonejs__app-nuxt","response":"success"},{"item":"keystonejs__app-static","response":"success"},{"item":"keystonejs__auth-passport","response":"success"},{"item":"keystonejs__auth-password","response":"success"},{"item":"keystonejs__email","response":"success"},{"item":"keystonejs__fields","response":"success"},{"item":"keystonejs__file-adapters","response":"success"},{"item":"keystonejs__keystone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"keystonejs__list-plugins","response":"success"},{"item":"keystonejs__logger","response":"success"},{"item":"keystonejs__oembed-adapters","response":"success"},{"item":"keystonejs__session","response":"success"},{"item":"keysym","response":"success"},{"item":"keyv","response":"success"},{"item":"keyv__mongo","response":"success"},{"item":"keyv__mysql","response":"success"},{"item":"keyv__postgres","response":"success"},{"item":"keyv__redis","response":"success"},{"item":"keyv__sqlite","response":"success"},{"item":"kii-cloud-sdk","response":"success"},{"item":"kik-browser","response":"success"},{"item":"kind-of","response":"success"},{"item":"kineticjs","response":"success"},{"item":"kissfft-js","response":"success"},{"item":"kiwicom__orbit-design-tokens","response":"success"},{"item":"klaw","response":"success"},{"item":"klaw-sync","response":"success"},{"item":"kms-json","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"knex-db-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knex-postgis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knockback","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'kind' of undefined\n"},{"item":"knockout","response":"success"},{"item":"knockout-amd-helpers","response":"success"},{"item":"knockout-postbox","response":"success"},{"item":"knockout-secure-binding","response":"success"},{"item":"knockout-transformations","response":"success"},{"item":"knockout.deferred.updates","response":"success"},{"item":"knockout.editables","response":"success"},{"item":"knockout.es5","response":"success"},{"item":"knockout.kogrid","response":"success"},{"item":"knockout.mapper","response":"success"},{"item":"knockout.mapping","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"knockout.projections","response":"success"},{"item":"knockout.punches","response":"success"},{"item":"knockout.rx","response":"success"},{"item":"knockout.validation","response":"success"},{"item":"knockout.viewmodel","response":"success"},{"item":"knockstrap","response":"success"},{"item":"knuddels-userapps-api","response":"success"},{"item":"knuth-shuffle","response":"success"},{"item":"ko.plus","response":"success"},{"item":"koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-basic-auth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bodyparser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bouncer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bunyan-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cache-control","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-conditional-get","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-csrf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-dec-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"koa-docs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ejs","response":"success"},{"item":"koa-etag","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-favicon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-generic-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-graphql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-helmet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-json-error","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log4","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger-winston","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-morgan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-mount","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-passport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"koa-pino-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-qs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit-lru","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-redis","response":"success"},{"item":"koa-redis-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-response-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-route","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"koa-send","response":"success"},{"item":"koa-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-session-minimal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-sslify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-views","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-webpack","response":"success"},{"item":"koa-websocket","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-xml-body","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-session-redis","response":"success"},{"item":"koa__cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"koji-tools","response":"success"},{"item":"kolite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/kolite"},{"item":"kompression","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"konami.js","response":"success"},{"item":"kos-core","response":"success"},{"item":"kraken-js","response":"success"},{"item":"kramed","response":"success"},{"item":"kss","response":"success"},{"item":"kue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"kue-ui-client","response":"success"},{"item":"kurento-client","response":"success"},{"item":"kurento-utils","response":"success"},{"item":"kuromoji","response":"success"},{"item":"kythe","response":"success"},{"item":"lab","response":"success"},{"item":"labeled-stream-splicer","response":"success"},{"item":"lambda-log","response":"success"},{"item":"lambda-tester","response":"success"},{"item":"lambda-wrapper","response":"success"},{"item":"lang.js","response":"success"},{"item":"langmap","response":"success"},{"item":"lasso","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"later","response":"success"},{"item":"latinize","response":"success"},{"item":"latlon-geohash","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"launchpad","response":"success"},{"item":"layui-layer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"layzr.js","response":"success"},{"item":"lazy-brush","response":"success"},{"item":"lazy-property","response":"success"},{"item":"lazy.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lazypipe","response":"success"},{"item":"ldap-filters","response":"success"},{"item":"ldapjs","response":"success"},{"item":"ldapjs-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leadfoot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"leaflet-areaselect","response":"success"},{"item":"leaflet-curve","response":"success"},{"item":"leaflet-deepzoom","response":"success"},{"item":"leaflet-draw","response":"success"},{"item":"leaflet-editable","response":"success"},{"item":"leaflet-fullscreen","response":"success"},{"item":"leaflet-geocoder-mapzen","response":"success"},{"item":"leaflet-geosearch","response":"success"},{"item":"leaflet-gpx","response":"success"},{"item":"leaflet-groupedlayercontrol","response":"success"},{"item":"leaflet-imageoverlay-rotated","response":"success"},{"item":"leaflet-label","response":"success"},{"item":"leaflet-loading","response":"success"},{"item":"leaflet-mouse-position","response":"success"},{"item":"leaflet-polylinedecorator","response":"success"},{"item":"leaflet-providers","response":"success"},{"item":"leaflet-rastercoords","response":"success"},{"item":"leaflet-responsive-popup","response":"success"},{"item":"leaflet-rotatedmarker","response":"success"},{"item":"leaflet-routing-machine","response":"success"},{"item":"leaflet.awesome-markers","response":"success"},{"item":"leaflet.featuregroup.subgroup","response":"success"},{"item":"leaflet.fullscreen","response":"success"},{"item":"leaflet.gridlayer.googlemutant","response":"success"},{"item":"leaflet.heat","response":"success"},{"item":"leaflet.icon.glyph","response":"success"},{"item":"leaflet.locatecontrol","response":"success"},{"item":"leaflet.markercluster","response":"success"},{"item":"leaflet.markercluster.layersupport","response":"success"},{"item":"leaflet.pancontrol","response":"success"},{"item":"leaflet.pm","response":"success"},{"item":"leaflet.polylinemeasure","response":"success"},{"item":"leaflet.utm","response":"success"},{"item":"leakage","response":"success"},{"item":"leapmotionts","response":"success"},{"item":"ledgerhq__hw-transport","response":"success"},{"item":"ledgerhq__hw-transport-node-hid","response":"success"},{"item":"ledgerhq__hw-transport-u2f","response":"success"},{"item":"ledgerhq__hw-transport-webusb","response":"success"},{"item":"legal-eagle","response":"success"},{"item":"lerna-alias","response":"success"},{"item":"lerna-get-packages","response":"success"},{"item":"less","response":"success"},{"item":"less-middleware","response":"success"},{"item":"less2sass","response":"success"},{"item":"lestate","response":"success"},{"item":"level-codec","response":"success"},{"item":"level-js","response":"success"},{"item":"level-sublevel","response":"success"},{"item":"level-ttl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"leveldown","response":"success"},{"item":"levelup","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"levenshtein","response":"success"},{"item":"lexicographic-integer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"libnpmsearch","response":"success"},{"item":"libpq","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"libqp","response":"success"},{"item":"librato-node","response":"success"},{"item":"libsodium-wrappers","response":"success"},{"item":"libsodium-wrappers-sumo","response":"success"},{"item":"libxmljs","response":"success"},{"item":"libxslt","response":"success"},{"item":"license-checker","response":"success"},{"item":"license-checker-webpack-plugin","response":"success"},{"item":"lifeomic__axios-fetch","response":"success"},{"item":"liftoff","response":"success"},{"item":"light-sdk","response":"success"},{"item":"lightpick","response":"success"},{"item":"lightship","response":"success"},{"item":"lil-uri","response":"success"},{"item":"lil-uuid","response":"success"},{"item":"lime-js","response":"success"},{"item":"line-by-line","response":"success"},{"item":"line-column","response":"success"},{"item":"line-reader","response":"success"},{"item":"linear-gradient","response":"success"},{"item":"lingui__core","response":"success"},{"item":"lingui__macro","response":"success"},{"item":"lingui__react","response":"success"},{"item":"linkify-it","response":"success"},{"item":"linkifyjs","response":"success"},{"item":"list-git-remotes","response":"success"},{"item":"list-stream","response":"success"},{"item":"list.js","response":"success"},{"item":"listr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"little-loader","response":"success"},{"item":"lls","response":"success"},{"item":"load-google-maps-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"loadable__component","response":"success"},{"item":"loadable__server","response":"success"},{"item":"loadable__webpack-plugin","response":"success"},{"item":"loader-runner","response":"success"},{"item":"loader-utils","response":"success"},{"item":"loadicons","response":"success"},{"item":"loadjs","response":"success"},{"item":"loadware","response":"success"},{"item":"lobibox","response":"success"},{"item":"local-dynamo","response":"success"},{"item":"local-storage","response":"success"},{"item":"locale","response":"success"},{"item":"localized-countries","response":"success"},{"item":"localizejs-library","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"localtunnel","response":"success"},{"item":"lockfile","response":"success"},{"item":"lockr","response":"success"},{"item":"locks","response":"success"},{"item":"locutus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lodash","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash-deep","response":"success"},{"item":"lodash-es","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n"},{"item":"lodash-webpack-plugin","response":"success"},{"item":"lodash.add","response":"success"},{"item":"lodash.after","response":"success"},{"item":"lodash.ary","response":"success"},{"item":"lodash.assign","response":"success"},{"item":"lodash.assignin","response":"success"},{"item":"lodash.assigninwith","response":"success"},{"item":"lodash.assignwith","response":"success"},{"item":"lodash.at","response":"success"},{"item":"lodash.attempt","response":"success"},{"item":"lodash.before","response":"success"},{"item":"lodash.bind","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.bindall","response":"success"},{"item":"lodash.bindkey","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.camelcase","response":"success"},{"item":"lodash.capitalize","response":"success"},{"item":"lodash.castarray","response":"success"},{"item":"lodash.ceil","response":"success"},{"item":"lodash.chunk","response":"success"},{"item":"lodash.clamp","response":"success"},{"item":"lodash.clone","response":"success"},{"item":"lodash.clonedeep","response":"success"},{"item":"lodash.clonedeepwith","response":"success"},{"item":"lodash.clonewith","response":"success"},{"item":"lodash.compact","response":"success"},{"item":"lodash.concat","response":"success"},{"item":"lodash.cond","response":"success"},{"item":"lodash.constant","response":"success"},{"item":"lodash.countby","response":"success"},{"item":"lodash.create","response":"success"},{"item":"lodash.curry","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.curryright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.debounce","response":"success"},{"item":"lodash.deburr","response":"success"},{"item":"lodash.defaults","response":"success"},{"item":"lodash.defaultsdeep","response":"success"},{"item":"lodash.defer","response":"success"},{"item":"lodash.delay","response":"success"},{"item":"lodash.difference","response":"success"},{"item":"lodash.differenceby","response":"success"},{"item":"lodash.differencewith","response":"success"},{"item":"lodash.divide","response":"success"},{"item":"lodash.drop","response":"success"},{"item":"lodash.dropright","response":"success"},{"item":"lodash.droprightwhile","response":"success"},{"item":"lodash.dropwhile","response":"success"},{"item":"lodash.endswith","response":"success"},{"item":"lodash.eq","response":"success"},{"item":"lodash.escape","response":"success"},{"item":"lodash.escaperegexp","response":"success"},{"item":"lodash.every","response":"success"},{"item":"lodash.fill","response":"success"},{"item":"lodash.filter","response":"success"},{"item":"lodash.find","response":"success"},{"item":"lodash.findindex","response":"success"},{"item":"lodash.findkey","response":"success"},{"item":"lodash.findlast","response":"success"},{"item":"lodash.findlastindex","response":"success"},{"item":"lodash.findlastkey","response":"success"},{"item":"lodash.first","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.flatmap","response":"success"},{"item":"lodash.flatmapdeep","response":"success"},{"item":"lodash.flatmapdepth","response":"success"},{"item":"lodash.flatten","response":"success"},{"item":"lodash.flattendeep","response":"success"},{"item":"lodash.flattendepth","response":"success"},{"item":"lodash.flip","response":"success"},{"item":"lodash.floor","response":"success"},{"item":"lodash.flow","response":"success"},{"item":"lodash.flowright","response":"success"},{"item":"lodash.foreach","response":"success"},{"item":"lodash.foreachright","response":"success"},{"item":"lodash.forin","response":"success"},{"item":"lodash.forinright","response":"success"},{"item":"lodash.forown","response":"success"},{"item":"lodash.forownright","response":"success"},{"item":"lodash.frompairs","response":"success"},{"item":"lodash.functions","response":"success"},{"item":"lodash.functionsin","response":"success"},{"item":"lodash.get","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash.groupby","response":"success"},{"item":"lodash.gt","response":"success"},{"item":"lodash.gte","response":"success"},{"item":"lodash.has","response":"success"},{"item":"lodash.hasin","response":"success"},{"item":"lodash.head","response":"success"},{"item":"lodash.identity","response":"success"},{"item":"lodash.includes","response":"success"},{"item":"lodash.indexof","response":"success"},{"item":"lodash.initial","response":"success"},{"item":"lodash.inrange","response":"success"},{"item":"lodash.intersection","response":"success"},{"item":"lodash.intersectionby","response":"success"},{"item":"lodash.intersectionwith","response":"success"},{"item":"lodash.invert","response":"success"},{"item":"lodash.invertby","response":"success"},{"item":"lodash.invoke","response":"success"},{"item":"lodash.invokemap","response":"success"},{"item":"lodash.isarguments","response":"success"},{"item":"lodash.isarray","response":"success"},{"item":"lodash.isarraybuffer","response":"success"},{"item":"lodash.isarraylike","response":"success"},{"item":"lodash.isarraylikeobject","response":"success"},{"item":"lodash.isboolean","response":"success"},{"item":"lodash.isbuffer","response":"success"},{"item":"lodash.isdate","response":"success"},{"item":"lodash.iselement","response":"success"},{"item":"lodash.isempty","response":"success"},{"item":"lodash.isequal","response":"success"},{"item":"lodash.isequalwith","response":"success"},{"item":"lodash.iserror","response":"success"},{"item":"lodash.isfinite","response":"success"},{"item":"lodash.isfunction","response":"success"},{"item":"lodash.isinteger","response":"success"},{"item":"lodash.islength","response":"success"},{"item":"lodash.ismap","response":"success"},{"item":"lodash.ismatch","response":"success"},{"item":"lodash.ismatchwith","response":"success"},{"item":"lodash.isnan","response":"success"},{"item":"lodash.isnative","response":"success"},{"item":"lodash.isnil","response":"success"},{"item":"lodash.isnull","response":"success"},{"item":"lodash.isnumber","response":"success"},{"item":"lodash.isobject","response":"success"},{"item":"lodash.isobjectlike","response":"success"},{"item":"lodash.isplainobject","response":"success"},{"item":"lodash.isregexp","response":"success"},{"item":"lodash.issafeinteger","response":"success"},{"item":"lodash.isset","response":"success"},{"item":"lodash.isstring","response":"success"},{"item":"lodash.issymbol","response":"success"},{"item":"lodash.istypedarray","response":"success"},{"item":"lodash.isundefined","response":"success"},{"item":"lodash.isweakmap","response":"success"},{"item":"lodash.isweakset","response":"success"},{"item":"lodash.iteratee","response":"success"},{"item":"lodash.join","response":"success"},{"item":"lodash.kebabcase","response":"success"},{"item":"lodash.keyby","response":"success"},{"item":"lodash.keys","response":"success"},{"item":"lodash.keysin","response":"success"},{"item":"lodash.last","response":"success"},{"item":"lodash.lastindexof","response":"success"},{"item":"lodash.lowercase","response":"success"},{"item":"lodash.lowerfirst","response":"success"},{"item":"lodash.lt","response":"success"},{"item":"lodash.lte","response":"success"},{"item":"lodash.mapkeys","response":"success"},{"item":"lodash.mapvalues","response":"success"},{"item":"lodash.matches","response":"success"},{"item":"lodash.matchesproperty","response":"success"},{"item":"lodash.max","response":"success"},{"item":"lodash.maxby","response":"success"},{"item":"lodash.mean","response":"success"},{"item":"lodash.meanby","response":"success"},{"item":"lodash.memoize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.merge","response":"success"},{"item":"lodash.mergewith","response":"success"},{"item":"lodash.method","response":"success"},{"item":"lodash.methodof","response":"success"},{"item":"lodash.min","response":"success"},{"item":"lodash.minby","response":"success"},{"item":"lodash.mixin","response":"success"},{"item":"lodash.multiply","response":"success"},{"item":"lodash.negate","response":"success"},{"item":"lodash.noop","response":"success"},{"item":"lodash.now","response":"success"},{"item":"lodash.nth","response":"success"},{"item":"lodash.ntharg","response":"success"},{"item":"lodash.omit","response":"success"},{"item":"lodash.omitby","response":"success"},{"item":"lodash.once","response":"success"},{"item":"lodash.orderby","response":"success"},{"item":"lodash.over","response":"success"},{"item":"lodash.overargs","response":"success"},{"item":"lodash.overevery","response":"success"},{"item":"lodash.oversome","response":"success"},{"item":"lodash.pad","response":"success"},{"item":"lodash.padend","response":"success"},{"item":"lodash.padstart","response":"success"},{"item":"lodash.parseint","response":"success"},{"item":"lodash.partial","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partialright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partition","response":"success"},{"item":"lodash.pick","response":"success"},{"item":"lodash.pickby","response":"success"},{"item":"lodash.property","response":"success"},{"item":"lodash.propertyof","response":"success"},{"item":"lodash.pull","response":"success"},{"item":"lodash.pullall","response":"success"},{"item":"lodash.pullallby","response":"success"},{"item":"lodash.pullallwith","response":"success"},{"item":"lodash.pullat","response":"success"},{"item":"lodash.random","response":"success"},{"item":"lodash.range","response":"success"},{"item":"lodash.rangeright","response":"success"},{"item":"lodash.rearg","response":"success"},{"item":"lodash.reduce","response":"success"},{"item":"lodash.reduceright","response":"success"},{"item":"lodash.reject","response":"success"},{"item":"lodash.remove","response":"success"},{"item":"lodash.repeat","response":"success"},{"item":"lodash.replace","response":"success"},{"item":"lodash.rest","response":"success"},{"item":"lodash.result","response":"success"},{"item":"lodash.reverse","response":"success"},{"item":"lodash.round","response":"success"},{"item":"lodash.sample","response":"success"},{"item":"lodash.samplesize","response":"success"},{"item":"lodash.set","response":"success"},{"item":"lodash.setwith","response":"success"},{"item":"lodash.shuffle","response":"success"},{"item":"lodash.size","response":"success"},{"item":"lodash.slice","response":"success"},{"item":"lodash.snakecase","response":"success"},{"item":"lodash.some","response":"success"},{"item":"lodash.sortby","response":"success"},{"item":"lodash.sortedindex","response":"success"},{"item":"lodash.sortedindexby","response":"success"},{"item":"lodash.sortedindexof","response":"success"},{"item":"lodash.sortedlastindex","response":"success"},{"item":"lodash.sortedlastindexby","response":"success"},{"item":"lodash.sortedlastindexof","response":"success"},{"item":"lodash.sorteduniq","response":"success"},{"item":"lodash.sorteduniqby","response":"success"},{"item":"lodash.split","response":"success"},{"item":"lodash.spread","response":"success"},{"item":"lodash.startcase","response":"success"},{"item":"lodash.startswith","response":"success"},{"item":"lodash.stubfalse","response":"success"},{"item":"lodash.stubtrue","response":"success"},{"item":"lodash.subtract","response":"success"},{"item":"lodash.sum","response":"success"},{"item":"lodash.sumby","response":"success"},{"item":"lodash.tail","response":"success"},{"item":"lodash.take","response":"success"},{"item":"lodash.takeright","response":"success"},{"item":"lodash.takerightwhile","response":"success"},{"item":"lodash.takewhile","response":"success"},{"item":"lodash.template","response":"success"},{"item":"lodash.throttle","response":"success"},{"item":"lodash.times","response":"success"},{"item":"lodash.toarray","response":"success"},{"item":"lodash.tofinite","response":"success"},{"item":"lodash.tointeger","response":"success"},{"item":"lodash.tolength","response":"success"},{"item":"lodash.tolower","response":"success"},{"item":"lodash.tonumber","response":"success"},{"item":"lodash.topairs","response":"success"},{"item":"lodash.topairsin","response":"success"},{"item":"lodash.topath","response":"success"},{"item":"lodash.toplainobject","response":"success"},{"item":"lodash.tosafeinteger","response":"success"},{"item":"lodash.tostring","response":"success"},{"item":"lodash.toupper","response":"success"},{"item":"lodash.transform","response":"success"},{"item":"lodash.trim","response":"success"},{"item":"lodash.trimend","response":"success"},{"item":"lodash.trimstart","response":"success"},{"item":"lodash.truncate","response":"success"},{"item":"lodash.unary","response":"success"},{"item":"lodash.unescape","response":"success"},{"item":"lodash.union","response":"success"},{"item":"lodash.unionby","response":"success"},{"item":"lodash.unionwith","response":"success"},{"item":"lodash.uniq","response":"success"},{"item":"lodash.uniqby","response":"success"},{"item":"lodash.uniqueid","response":"success"},{"item":"lodash.uniqwith","response":"success"},{"item":"lodash.unset","response":"success"},{"item":"lodash.unzip","response":"success"},{"item":"lodash.unzipwith","response":"success"},{"item":"lodash.update","response":"success"},{"item":"lodash.updatewith","response":"success"},{"item":"lodash.uppercase","response":"success"},{"item":"lodash.upperfirst","response":"success"},{"item":"lodash.values","response":"success"},{"item":"lodash.valuesin","response":"success"},{"item":"lodash.without","response":"success"},{"item":"lodash.words","response":"success"},{"item":"lodash.wrap","response":"success"},{"item":"lodash.xor","response":"success"},{"item":"lodash.xorby","response":"success"},{"item":"lodash.xorwith","response":"success"},{"item":"lodash.zip","response":"success"},{"item":"lodash.zipobject","response":"success"},{"item":"lodash.zipobjectdeep","response":"success"},{"item":"lodash.zipwith","response":"success"},{"item":"log-process-errors","response":"success"},{"item":"logat","response":"success"},{"item":"logfmt","response":"success"},{"item":"logg","response":"success"},{"item":"logger","response":"success"},{"item":"loggly","response":"success"},{"item":"login-with-amazon-sdk-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"logrocket-react","response":"success"},{"item":"logrotate-stream","response":"success"},{"item":"lokijs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"lolex","response":"success"},{"item":"long","response":"success"},{"item":"loopback","response":"success"},{"item":"loopback-boot","response":"success"},{"item":"loopbench","response":"success"},{"item":"looper","response":"success"},{"item":"lory.js","response":"success"},{"item":"lossless-json","response":"success"},{"item":"lovefield","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lowdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"lowlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lozad","response":"success"},{"item":"lru-cache","response":"success"},{"item":"lscache","response":"success"},{"item":"lscache","response":"success"},{"item":"ltx","response":"success"},{"item":"luaparse","response":"success"},{"item":"lucene","response":"success"},{"item":"lunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"lusca","response":"success"},{"item":"luxon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lwip","response":"success"},{"item":"lyric-parser","response":"success"},{"item":"lyricist","response":"success"},{"item":"lz-string","response":"success"},{"item":"lzma-native","response":"success"},{"item":"macaca-circular-json","response":"success"},{"item":"macrotask","response":"success"},{"item":"magic-number","response":"success"},{"item":"magicsuggest","response":"success"},{"item":"magnet-uri","response":"success"},{"item":"mailcheck","response":"success"},{"item":"maildev","response":"success"},{"item":"mailgen","response":"success"},{"item":"mailgun-js","response":"success"},{"item":"mailparser","response":"success"},{"item":"main-bower-files","response":"success"},{"item":"mainloop.js","response":"success"},{"item":"maker.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"makeup-expander","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"makeup-floating-label","response":"success"},{"item":"makeup-keyboard-trap","response":"success"},{"item":"makeup-prevent-scroll-keys","response":"success"},{"item":"makeup-screenreader-trap","response":"success"},{"item":"mandrill-api","response":"success"},{"item":"mangopay2-nodejs-sdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"map-to-obj","response":"success"},{"item":"mapbox","response":"success"},{"item":"mapbox-gl","response":"success"},{"item":"mapbox-gl-leaflet","response":"success"},{"item":"mapbox__geo-viewport","response":"success"},{"item":"mapbox__geojson-area","response":"success"},{"item":"mapbox__mapbox-sdk","response":"success"},{"item":"mapbox__polyline","response":"success"},{"item":"mapbox__s3urls","response":"success"},{"item":"mapbox__shelf-pack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"mapbox__sphericalmercator","response":"success"},{"item":"mapbox__tile-cover","response":"success"},{"item":"mapnik","response":"success"},{"item":"mapsjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mariasql","response":"success"},{"item":"mark.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"markdown-draft-js","response":"success"},{"item":"markdown-it","response":"success"},{"item":"markdown-it-anchor","response":"success"},{"item":"markdown-it-container","response":"success"},{"item":"markdown-it-lazy-headers","response":"success"},{"item":"markdown-magic","response":"success"},{"item":"markdown-pdf","response":"success"},{"item":"markdown-table","response":"success"},{"item":"markdown-to-jsx","response":"success"},{"item":"markdownlint","response":"success"},{"item":"marked","response":"success"},{"item":"marked-terminal","response":"success"},{"item":"markedjs__html-differ","response":"success"},{"item":"marker-animate-unobtrusive","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"markitup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"marko","response":"success"},{"item":"maskedinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"masonry-layout","response":"success"},{"item":"massive","response":"success"},{"item":"match-media-mock","response":"success"},{"item":"match-sorter","response":"success"},{"item":"matchdep","response":"success"},{"item":"material-design-lite","response":"success"},{"item":"material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"material-ui-datatables","response":"success"},{"item":"material-ui-pagination","response":"success"},{"item":"material__animation","response":"success"},{"item":"material__auto-init","response":"success"},{"item":"material__base","response":"success"},{"item":"material__checkbox","response":"success"},{"item":"material__chips","response":"success"},{"item":"material__dialog","response":"success"},{"item":"material__dom","response":"success"},{"item":"material__drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__floating-label","response":"success"},{"item":"material__form-field","response":"success"},{"item":"material__grid-list","response":"success"},{"item":"material__icon-toggle","response":"success"},{"item":"material__line-ripple","response":"success"},{"item":"material__linear-progress","response":"success"},{"item":"material__list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__notched-outline","response":"success"},{"item":"material__radio","response":"success"},{"item":"material__ripple","response":"success"},{"item":"material__select","response":"success"},{"item":"material__selection-control","response":"success"},{"item":"material__slider","response":"success"},{"item":"material__snackbar","response":"success"},{"item":"material__tab","response":"success"},{"item":"material__tabs","response":"success"},{"item":"material__textfield","response":"success"},{"item":"material__toolbar","response":"success"},{"item":"material__top-app-bar","response":"success"},{"item":"materialize-css","response":"success"},{"item":"math-expression-evaluator","response":"success"},{"item":"math-random","response":"success"},{"item":"math-sign","response":"success"},{"item":"math-trunc","response":"success"},{"item":"math3d","response":"success"},{"item":"mathjax","response":"success"},{"item":"mathjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"matrix-appservice-bridge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"matrix-js-sdk","response":"success"},{"item":"matter-js","response":"success"},{"item":"mcrypt","response":"success"},{"item":"mcustomscrollbar","response":"success"},{"item":"md5","response":"success"},{"item":"md5-file","response":"success"},{"item":"mdast","response":"success"},{"item":"mdns","response":"success"},{"item":"mdurl","response":"success"},{"item":"mdx-js__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"media-typer","response":"success"},{"item":"medium-editor","response":"success"},{"item":"megajs","response":"success"},{"item":"mem-cache","response":"success"},{"item":"mem-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mem-fs-editor","response":"success"},{"item":"memcached","response":"success"},{"item":"memdown","response":"success"},{"item":"memjs","response":"success"},{"item":"memoizee","response":"success"},{"item":"memory-cache","response":"success"},{"item":"memory-fs","response":"success"},{"item":"memory-pager","response":"success"},{"item":"memorystream","response":"success"},{"item":"memwatch-next","response":"success"},{"item":"meow","response":"success"},{"item":"merge-descriptors","response":"success"},{"item":"merge-env","response":"success"},{"item":"merge-images","response":"success"},{"item":"merge-img","response":"success"},{"item":"merge-objects","response":"success"},{"item":"merge-stream","response":"success"},{"item":"merge2","response":"success"},{"item":"mergerino","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"merkle","response":"success"},{"item":"mermaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mersenne-twister","response":"success"},{"item":"meshblu","response":"success"},{"item":"mess","response":"success"},{"item":"messenger","response":"success"},{"item":"metalsmith","response":"success"},{"item":"meteor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/meteor"},{"item":"meteor-accounts-phone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-astronomy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-collection-hooks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"meteor-jboulhous-dev","response":"success"},{"item":"meteor-persistent-session","response":"success"},{"item":"meteor-prime8consulting-oauth2","response":"success"},{"item":"meteor-publish-composite","response":"success"},{"item":"meteor-roles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-universe-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"method-override","response":"success"},{"item":"methods","response":"success"},{"item":"metric-suffix","response":"success"},{"item":"meyda","response":"success"},{"item":"mfiles","response":"success"},{"item":"micro","response":"success"},{"item":"micro-cors","response":"success"},{"item":"micro-events","response":"success"},{"item":"micromatch","response":"success"},{"item":"micromodal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microrouter","response":"success"},{"item":"microservice-utilities","response":"success"},{"item":"microsoft-ajax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-graph","response":"success"},{"item":"microsoft-live-connect","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-sdk-soap","response":"success"},{"item":"microsoft__typescript-etw","response":"success"},{"item":"microsoftteams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microtime","response":"success"},{"item":"migrate-mongo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"milkcocoa","response":"success"},{"item":"millisecond","response":"success"},{"item":"milliseconds","response":"success"},{"item":"mime","response":"success"},{"item":"mime-db","response":"success"},{"item":"mime-types","response":"success"},{"item":"mimos","response":"success"},{"item":"min-document","response":"success"},{"item":"min-indent","response":"success"},{"item":"mina","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"minapp-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/minapp-env/index.d.ts(14,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n../DefinitelyTyped/types/minapp-env/index.d.ts(90,3): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(292,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1088,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1302,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(4737,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5543,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Symbol\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5587,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Map\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5591,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakMap\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5595,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Set\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5599,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakSet\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5618,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"GeneratorFunction\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5626,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Promise\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5630,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.species]' must be of type 'PromiseConstructor', but here has type 'Function'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5682,3): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\nnode_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts(225,14): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n"},{"item":"mini-css-extract-plugin","response":"success"},{"item":"mini-html-webpack-plugin","response":"success"},{"item":"minilog","response":"success"},{"item":"minimal-bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"minimal-request-promise","response":"success"},{"item":"minimalistic-assert","response":"success"},{"item":"minimatch","response":"success"},{"item":"minimist","response":"success"},{"item":"minimist-options","response":"success"},{"item":"minio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"minipass","response":"success"},{"item":"miniprogram-wxs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\n\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(28,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(96,5): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(368,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(493,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1174,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1179,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1333,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1397,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(42,15): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(56,15): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n"},{"item":"mirrorx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mithril","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mithril-global","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mitm","response":"success"},{"item":"mitsobox","response":"success"},{"item":"mixpanel","response":"success"},{"item":"mixpanel-browser","response":"success"},{"item":"mixto","response":"success"},{"item":"mjml","response":"success"},{"item":"mjml-react","response":"success"},{"item":"mkcert","response":"success"},{"item":"mkdirp","response":"success"},{"item":"mkpath","response":"success"},{"item":"ml-levenberg-marquardt","response":"success"},{"item":"mmmagic","response":"success"},{"item":"mobile-messaging-cordova","response":"success"},{"item":"mobx-apollo","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'find' of undefined\n"},{"item":"mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"mocha-each","response":"success"},{"item":"mocha-phantomjs","response":"success"},{"item":"mocha-prepare","response":"success"},{"item":"mocha-steps","response":"success"},{"item":"mocha-sugar-free","response":"success"},{"item":"mochaccino","response":"success"},{"item":"mock-aws-s3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mock-express-request","response":"success"},{"item":"mock-fs","response":"success"},{"item":"mock-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mock-raf","response":"success"},{"item":"mock-req-res","response":"success"},{"item":"mock-require","response":"success"},{"item":"mockdate","response":"success"},{"item":"mockery","response":"success"},{"item":"mockjs","response":"success"},{"item":"modernizr","response":"success"},{"item":"modesl","response":"success"},{"item":"modular-scale","response":"success"},{"item":"module-alias","response":"success"},{"item":"module-deps","response":"success"},{"item":"moji","response":"success"},{"item":"moment-business","response":"success"},{"item":"moment-business-time","response":"success"},{"item":"moment-duration-format","response":"success"},{"item":"moment-hijri","response":"success"},{"item":"moment-holiday","response":"success"},{"item":"moment-jalaali","response":"success"},{"item":"moment-precise-range-plugin","response":"success"},{"item":"moment-round","response":"success"},{"item":"moment-shortformat","response":"success"},{"item":"moment-strftime2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\n\n../DefinitelyTyped/types/moment-strftime2/index.d.ts(7,26): error TS2307: Cannot find module 'moment'.\n"},{"item":"moment-timezone","response":"success"},{"item":"money-math","response":"success"},{"item":"mongo-sanitize","response":"success"},{"item":"mongodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"mongodb-queue","response":"success"},{"item":"mongodb-uri","response":"success"},{"item":"mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-auto-increment","response":"success"},{"item":"mongoose-autopopulate","response":"success"},{"item":"mongoose-deep-populate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"mongoose-delete","response":"success"},{"item":"mongoose-geojson-schema","response":"success"},{"item":"mongoose-lean-virtuals","response":"success"},{"item":"mongoose-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate-v2","response":"success"},{"item":"mongoose-promise","response":"success"},{"item":"mongoose-seeder","response":"success"},{"item":"mongoose-sequence","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-simple-random","response":"success"},{"item":"mongoose-unique-validator","response":"success"},{"item":"mongorito","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"mongration","response":"success"},{"item":"moo","response":"success"},{"item":"moonjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n"},{"item":"morgan","response":"success"},{"item":"morris.js","response":"success"},{"item":"mosca","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"motion-scroll","response":"success"},{"item":"motor-hat","response":"success"},{"item":"mousetrap","response":"success"},{"item":"move-concurrently","response":"success"},{"item":"moveto","response":"success"},{"item":"moviedb","response":"success"},{"item":"moxios","response":"success"},{"item":"mozilla-readability","response":"success"},{"item":"mozjpeg","response":"success"},{"item":"mpromise","response":"success"},{"item":"mri","response":"success"},{"item":"mrz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"ms","response":"success"},{"item":"msgpack","response":"success"},{"item":"msgpack-lite","response":"success"},{"item":"msgpack5","response":"success"},{"item":"msnodesql","response":"success"},{"item":"mssql","response":"success"},{"item":"mta-h5-analysis","response":"success"},{"item":"mu2","response":"success"},{"item":"mui-datatables","response":"success"},{"item":"muibox","response":"success"},{"item":"muicss","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/muicss"},{"item":"multer","response":"success"},{"item":"multer-gridfs-storage","response":"success"},{"item":"multer-s3","response":"success"},{"item":"multi-progress","response":"success"},{"item":"multi-typeof","response":"success"},{"item":"multiaddr","response":"success"},{"item":"multibase","response":"success"},{"item":"multicodec","response":"success"},{"item":"multimap","response":"success"},{"item":"multiparty","response":"success"},{"item":"multipipe","response":"success"},{"item":"multiplexjs","response":"success"},{"item":"multireducer","response":"success"},{"item":"multisort","response":"success"},{"item":"multistream","response":"success"},{"item":"multivariate-normal","response":"success"},{"item":"multy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"mumath","response":"success"},{"item":"muri","response":"success"},{"item":"murmurhash","response":"success"},{"item":"murmurhash-js","response":"success"},{"item":"murmurhash3js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"musicmatch","response":"success"},{"item":"musicmetadata","response":"success"},{"item":"mustache","response":"success"},{"item":"mustache-express","response":"success"},{"item":"mutexify","response":"success"},{"item":"mv","response":"success"},{"item":"mysql","response":"success"},{"item":"mysql-import","response":"success"},{"item":"mz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"n-readlines","response":"success"},{"item":"n3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"naja","response":"success"},{"item":"named-regexp-groups","response":"success"},{"item":"named-routes","response":"success"},{"item":"nano-equal","response":"success"},{"item":"nanoajax","response":"success"},{"item":"nanoassert","response":"success"},{"item":"nanoevents","response":"success"},{"item":"nanographql","response":"success"},{"item":"nanoid","response":"success"},{"item":"nanomsg","response":"success"},{"item":"nanoscroller","response":"success"},{"item":"nanotimer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"nanp","response":"success"},{"item":"native-toast","response":"success"},{"item":"natural","response":"success"},{"item":"natural-compare","response":"success"},{"item":"natural-compare-lite","response":"success"},{"item":"natural-sort","response":"success"},{"item":"naudiodon","response":"success"},{"item":"naver-whale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navermaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navigo","response":"success"},{"item":"ncom","response":"success"},{"item":"nconf","response":"success"},{"item":"ncp","response":"success"},{"item":"ndarray","response":"success"},{"item":"ndjson","response":"success"},{"item":"ndn-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"nearley","response":"success"},{"item":"neat-csv","response":"success"},{"item":"nedb","response":"success"},{"item":"nedb-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"needle","response":"success"},{"item":"negotiator","response":"success"},{"item":"neo4j","response":"success"},{"item":"nes","response":"success"},{"item":"nestdb","response":"success"},{"item":"nested-error-stacks","response":"success"},{"item":"net-keepalive","response":"success"},{"item":"net-ticks","response":"success"},{"item":"netconf","response":"success"},{"item":"netease-captcha","response":"success"},{"item":"netlify-identity-widget","response":"success"},{"item":"netmask","response":"success"},{"item":"network-interfaces","response":"success"},{"item":"neverbounce","response":"success"},{"item":"new-relic-browser","response":"success"},{"item":"newline-remove","response":"success"},{"item":"newman","response":"success"},{"item":"newrelic","response":"success"},{"item":"newrelic__winston-enricher","response":"success"},{"item":"nexpect","response":"success"},{"item":"next-nprogress","response":"success"},{"item":"next-redux-saga","response":"success"},{"item":"next-seo","response":"success"},{"item":"next-tick","response":"success"},{"item":"nextgen-events","response":"success"},{"item":"ng-command","response":"success"},{"item":"ng-cordova","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/ng-cordova"},{"item":"ng-dialog","response":"success"},{"item":"ng-facebook","response":"success"},{"item":"ng-file-upload","response":"success"},{"item":"ng-flow","response":"success"},{"item":"ng-grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-i18next","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-notify","response":"success"},{"item":"ng-stomp","response":"success"},{"item":"ng-tags-input","response":"success"},{"item":"ngbootbox","response":"success"},{"item":"ngeohash","response":"success"},{"item":"ngkookies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngprogress","response":"success"},{"item":"ngprogress-lite","response":"success"},{"item":"ngreact","response":"success"},{"item":"ngsijs","response":"success"},{"item":"ngstorage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/ngstorage/index.d.ts(41,39): error TS2503: Cannot find namespace 'angular'.\n"},{"item":"ngtoaster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n"},{"item":"ngwysiwyg","response":"success"},{"item":"nice-try","response":"success"},{"item":"nightmare","response":"success"},{"item":"nightwatch","response":"success"},{"item":"nise","response":"success"},{"item":"nivo-slider","response":"success"},{"item":"no-scroll","response":"success"},{"item":"noble","response":"success"},{"item":"noble-mac","response":"success"},{"item":"nodal","response":"success"},{"item":"node","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'statements' of undefined\n"},{"item":"node-7z","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-abi","response":"success"},{"item":"node-apple-receipt-verify","response":"success"},{"item":"node-array-ext","response":"success"},{"item":"node-browser-history","response":"success"},{"item":"node-calendar","response":"success"},{"item":"node-cleanup","response":"success"},{"item":"node-config-manager","response":"success"},{"item":"node-crate","response":"success"},{"item":"node-cron","response":"success"},{"item":"node-dijkstra","response":"success"},{"item":"node-dir","response":"success"},{"item":"node-dogstatsd","response":"success"},{"item":"node-downloader-helper","response":"success"},{"item":"node-easy-cert","response":"success"},{"item":"node-emoji","response":"success"},{"item":"node-expat","response":"success"},{"item":"node-fetch","response":"success"},{"item":"node-fibers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-forge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-gcm","response":"success"},{"item":"node-geocoder","response":"success"},{"item":"node-getopt","response":"success"},{"item":"node-gettext","response":"success"},{"item":"node-gzip","response":"success"},{"item":"node-hid","response":"success"},{"item":"node-horseman","response":"success"},{"item":"node-hue-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-insights","response":"success"},{"item":"node-int64","response":"success"},{"item":"node-ipc","response":"success"},{"item":"node-jose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-jsfl-runner","response":"success"},{"item":"node-localstorage","response":"success"},{"item":"node-loggly-bulk","response":"success"},{"item":"node-mailjet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-memwatch","response":"success"},{"item":"node-mysql-wrapper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"node-notifier","response":"success"},{"item":"node-observer","response":"success"},{"item":"node-openload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"node-os-utils","response":"success"},{"item":"node-pdftk","response":"success"},{"item":"node-persist","response":"success"},{"item":"node-phpass","response":"success"},{"item":"node-polyglot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-powershell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-pushnotifications","response":"success"},{"item":"node-ral","response":"success"},{"item":"node-red","response":"success"},{"item":"node-redis-pubsub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"node-redmine","response":"success"},{"item":"node-resque","response":"success"},{"item":"node-rsa","response":"success"},{"item":"node-sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-sass-middleware","response":"success"},{"item":"node-schedule","response":"success"},{"item":"node-slack","response":"success"},{"item":"node-snap7","response":"success"},{"item":"node-sprite-generator","response":"success"},{"item":"node-ssdp","response":"success"},{"item":"node-ssh","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-static","response":"success"},{"item":"node-statsd","response":"success"},{"item":"node-telegram-bot-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-timecodes","response":"success"},{"item":"node-uuid","response":"success"},{"item":"node-vagrant","response":"success"},{"item":"node-validator","response":"success"},{"item":"node-vault","response":"success"},{"item":"node-wget-promise","response":"success"},{"item":"node-windows","response":"success"},{"item":"node-wit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-xlsx","response":"success"},{"item":"node-xmpp-client","response":"success"},{"item":"node-xmpp-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zendesk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zookeeper-client","response":"success"},{"item":"node-zopfli","response":"success"},{"item":"node-zopfli-es","response":"success"},{"item":"node_redis","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/node_redis"},{"item":"nodecredstash","response":"success"},{"item":"nodegit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nodejs-license-file","response":"success"},{"item":"nodemailer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"nodemailer-direct-transport","response":"success"},{"item":"nodemailer-mailgun-transport","response":"success"},{"item":"nodemailer-pickup-transport","response":"success"},{"item":"nodemailer-ses-transport","response":"success"},{"item":"nodemailer-smtp-pool","response":"success"},{"item":"nodemailer-smtp-transport","response":"success"},{"item":"nodemailer-stub-transport","response":"success"},{"item":"nodemon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"nodeunit","response":"success"},{"item":"noisejs","response":"success"},{"item":"nomnom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nonogram-solver","response":"success"},{"item":"nopt","response":"success"},{"item":"normalize-jss","response":"success"},{"item":"normalize-package-data","response":"success"},{"item":"normalize-path","response":"success"},{"item":"nosleep.js","response":"success"},{"item":"notie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/notie"},{"item":"notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notifyjs","response":"success"},{"item":"notifyjs-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nouislider","response":"success"},{"item":"novnc-core","response":"success"},{"item":"npm","response":"success"},{"item":"npm-cache-filename","response":"success"},{"item":"npm-license-crawler","response":"success"},{"item":"npm-list-author-packages","response":"success"},{"item":"npm-package-arg","response":"success"},{"item":"npm-packlist","response":"success"},{"item":"npm-paths","response":"success"},{"item":"npm-registry-fetch","response":"success"},{"item":"npm-registry-package-info","response":"success"},{"item":"npm-run","response":"success"},{"item":"npm-user-packages","response":"success"},{"item":"npm-which","response":"success"},{"item":"npmlog","response":"success"},{"item":"nprogress","response":"success"},{"item":"ns-api","response":"success"},{"item":"nslog","response":"success"},{"item":"nsqjs","response":"success"},{"item":"nssm","response":"success"},{"item":"ntlm-client","response":"success"},{"item":"nuclear-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n"},{"item":"num2fraction","response":"success"},{"item":"number-is-nan","response":"success"},{"item":"number-to-words","response":"success"},{"item":"numeral","response":"success"},{"item":"numeric","response":"success"},{"item":"numjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks-date","response":"success"},{"item":"nuxtjs__auth","response":"success"},{"item":"nvd3","response":"success"},{"item":"nw.gui","response":"success"},{"item":"nw.js","response":"success"},{"item":"nwmatcher","response":"success"},{"item":"nyaapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"oakdex-pokedex","response":"success"},{"item":"oauth","response":"success"},{"item":"oauth-shim","response":"success"},{"item":"oauth.js","response":"success"},{"item":"oauth2-implicit","response":"success"},{"item":"oauth2-server","response":"success"},{"item":"oauth2orize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"obelisk.js","response":"success"},{"item":"obj-file-parser","response":"success"},{"item":"obj-str","response":"success"},{"item":"object-assign","response":"success"},{"item":"object-assign-deep","response":"success"},{"item":"object-diff","response":"success"},{"item":"object-fit-images","response":"success"},{"item":"object-hash","response":"success"},{"item":"object-inspect","response":"success"},{"item":"object-joiner","response":"success"},{"item":"object-keys","response":"success"},{"item":"object-keys-mapping","response":"success"},{"item":"object-map","response":"success"},{"item":"object-mapper","response":"success"},{"item":"object-merge","response":"success"},{"item":"object-path","response":"success"},{"item":"object-refs","response":"success"},{"item":"object.getownpropertydescriptors","response":"success"},{"item":"object.omit","response":"success"},{"item":"object.pick","response":"success"},{"item":"objtools","response":"success"},{"item":"oblo-util","response":"success"},{"item":"oboe","response":"success"},{"item":"observe-js","response":"success"},{"item":"obsolete-web","response":"success"},{"item":"oclazyload","response":"success"},{"item":"ofe","response":"success"},{"item":"office-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-js-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-runtime","response":"success"},{"item":"offline-js","response":"success"},{"item":"offscreen-canvas","response":"success"},{"item":"offscreencanvas","response":"success"},{"item":"oibackoff","response":"success"},{"item":"oidc-token-manager","response":"success"},{"item":"oja","response":"success"},{"item":"okta__okta-vue","response":"success"},{"item":"ol","response":"success"},{"item":"omelette","response":"success"},{"item":"omggif","response":"success"},{"item":"omit-empty","response":"success"},{"item":"on-finished","response":"success"},{"item":"on-headers","response":"success"},{"item":"on-wake-up","response":"success"},{"item":"once","response":"success"},{"item":"one-time","response":"success"},{"item":"onesignal-cordova-plugin","response":"success"},{"item":"onfleet__node-onfleet","response":"success"},{"item":"oniguruma","response":"success"},{"item":"onionoo","response":"success"},{"item":"ontime","response":"success"},{"item":"open-graph","response":"success"},{"item":"open-wc__testing-karma","response":"success"},{"item":"open-wc__testing-karma-bs","response":"success"},{"item":"open-wc__webpack-import-meta-loader","response":"success"},{"item":"openapi-factory","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opener","response":"success"},{"item":"openfin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"openid","response":"success"},{"item":"openjscad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"openlayers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"openpgp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"openssi-websdk","response":"success"},{"item":"openstack-wrapper","response":"success"},{"item":"opentok","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opentype.js","response":"success"},{"item":"openui5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/openui5"},{"item":"openurl","response":"success"},{"item":"openurl2","response":"success"},{"item":"opossum","response":"success"},{"item":"optics-agent","response":"success"},{"item":"optimist","response":"success"},{"item":"optimize-css-assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"oracle__oraclejet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"oracledb","response":"success"},{"item":"orchestrator","response":"success"},{"item":"orderedmap","response":"success"},{"item":"orientjs","response":"success"},{"item":"original","response":"success"},{"item":"os-homedir","response":"success"},{"item":"os-service","response":"success"},{"item":"os-tmpdir","response":"success"},{"item":"os-utils","response":"success"},{"item":"osenv","response":"success"},{"item":"osmosis","response":"success"},{"item":"osmtogeojson","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ospec","response":"success"},{"item":"osrm","response":"success"},{"item":"osrs-json-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ot","response":"success"},{"item":"ouibounce","response":"success"},{"item":"overlayscrollbars","response":"success"},{"item":"overload-protection","response":"success"},{"item":"owasp-password-strength-test","response":"success"},{"item":"owl.carousel","response":"success"},{"item":"owlcarousel","response":"success"},{"item":"p-fifo","response":"success"},{"item":"p-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"p2","response":"success"},{"item":"p5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"pa11y","response":"success"},{"item":"package-info","response":"success"},{"item":"packery","response":"success"},{"item":"pacote","response":"success"},{"item":"pad-left","response":"success"},{"item":"page","response":"success"},{"item":"page-icon","response":"success"},{"item":"pager__jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"paho-mqtt","response":"success"},{"item":"pako","response":"success"},{"item":"palx","response":"success"},{"item":"pangu","response":"success"},{"item":"papaparse","response":"success"},{"item":"parallel-transform","response":"success"},{"item":"paralleljs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parameterize","response":"success"},{"item":"parcel-bundler","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parcel-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'children' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'parent' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'require' of types 'Module' and 'Module' are not identical.\n"},{"item":"parent-package-json","response":"success"},{"item":"parents","response":"success"},{"item":"parity-pmd","response":"success"},{"item":"parity-pmr","response":"success"},{"item":"parity-poe","response":"success"},{"item":"parquetjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"parse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"parse-author","response":"success"},{"item":"parse-color","response":"success"},{"item":"parse-filepath","response":"success"},{"item":"parse-full-name","response":"success"},{"item":"parse-git-config","response":"success"},{"item":"parse-github-url","response":"success"},{"item":"parse-glob","response":"success"},{"item":"parse-human-date-range","response":"success"},{"item":"parse-json","response":"success"},{"item":"parse-link-header","response":"success"},{"item":"parse-mockdb","response":"success"},{"item":"parse-numeric-range","response":"success"},{"item":"parse-package-name","response":"success"},{"item":"parse-passwd","response":"success"},{"item":"parse-path","response":"success"},{"item":"parse-prefer-header","response":"success"},{"item":"parse-torrent","response":"success"},{"item":"parse-torrent-file","response":"success"},{"item":"parse-unit","response":"success"},{"item":"parse5","response":"success"},{"item":"parse5-html-rewriting-stream","response":"success"},{"item":"parse5-htmlparser2-tree-adapter","response":"success"},{"item":"parse5-parser-stream","response":"success"},{"item":"parse5-plain-text-conversion-stream","response":"success"},{"item":"parse5-sax-parser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"parse5-serializer-stream","response":"success"},{"item":"parsecurrency","response":"success"},{"item":"parseurl","response":"success"},{"item":"parsimmon","response":"success"},{"item":"passport","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'ids' of undefined\n"},{"item":"passport-anonymous","response":"success"},{"item":"passport-auth0","response":"success"},{"item":"passport-azure-ad","response":"success"},{"item":"passport-beam","response":"success"},{"item":"passport-bnet","response":"success"},{"item":"passport-cognito","response":"success"},{"item":"passport-discord","response":"success"},{"item":"passport-facebook","response":"success"},{"item":"passport-facebook-token","response":"success"},{"item":"passport-github","response":"success"},{"item":"passport-github2","response":"success"},{"item":"passport-google-oauth","response":"success"},{"item":"passport-google-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"passport-google-oauth20","response":"success"},{"item":"passport-http","response":"success"},{"item":"passport-http-bearer","response":"success"},{"item":"passport-instagram","response":"success"},{"item":"passport-jwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"passport-kakao","response":"success"},{"item":"passport-linkedin-oauth2","response":"success"},{"item":"passport-local","response":"success"},{"item":"passport-local-mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"passport-microsoft","response":"success"},{"item":"passport-naver","response":"success"},{"item":"passport-oauth2","response":"success"},{"item":"passport-oauth2-client-password","response":"success"},{"item":"passport-oauth2-refresh","response":"success"},{"item":"passport-remember-me-extended","response":"success"},{"item":"passport-saml","response":"success"},{"item":"passport-steam","response":"success"},{"item":"passport-strategy","response":"success"},{"item":"passport-twitter","response":"success"},{"item":"passport-unique-token","response":"success"},{"item":"passport-vkontakte","response":"success"},{"item":"passport-windowsauth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"passport.socketio","response":"success"},{"item":"password","response":"success"},{"item":"password-hash","response":"success"},{"item":"password-hash-and-salt","response":"success"},{"item":"path-is-absolute","response":"success"},{"item":"path-is-inside","response":"success"},{"item":"path-parse","response":"success"},{"item":"path-regex","response":"success"},{"item":"pathfinding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pathjs","response":"success"},{"item":"pathval","response":"success"},{"item":"pathwatcher","response":"success"},{"item":"pause","response":"success"},{"item":"payment","response":"success"},{"item":"paypal-cordova-plugin","response":"success"},{"item":"paypal-rest-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"paystack","response":"success"},{"item":"pbf","response":"success"},{"item":"pbkdf2","response":"success"},{"item":"pdf-fill-form","response":"success"},{"item":"pdf-image","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"pdf-viewer-reactjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"pdf2image","response":"success"},{"item":"pdfjs-dist","response":"success"},{"item":"pdfkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pdfmake","response":"success"},{"item":"pdfobject","response":"success"},{"item":"pebblekitjs","response":"success"},{"item":"peer-dial","response":"success"},{"item":"pegjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pell","response":"success"},{"item":"pem","response":"success"},{"item":"pem-jwk","response":"success"},{"item":"pendo-io-browser","response":"success"},{"item":"perfy","response":"success"},{"item":"permit","response":"success"},{"item":"persona","response":"success"},{"item":"pet-finder-api","response":"success"},{"item":"petit-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg-copy-streams","response":"success"},{"item":"pg-ears","response":"success"},{"item":"pg-escape","response":"success"},{"item":"pg-format","response":"success"},{"item":"pg-large-object","response":"success"},{"item":"pg-pool","response":"success"},{"item":"pg-query-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"pg-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pgwmodal","response":"success"},{"item":"phantom","response":"success"},{"item":"phantomcss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phantomjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phoenix","response":"success"},{"item":"phone","response":"success"},{"item":"phone-formatter","response":"success"},{"item":"phoneformat.js","response":"success"},{"item":"phonegap","response":"success"},{"item":"phonegap-facebook-plugin","response":"success"},{"item":"phonegap-nfc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/phonegap-nfc/index.d.ts(459,5): error TS2309: An export assignment cannot be used in a module with other exported elements.\n"},{"item":"phonegap-plugin-barcodescanner","response":"success"},{"item":"phonon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceExportDeclaration - it will convert to null"},{"item":"photonui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"photoswipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"php-serialize","response":"success"},{"item":"physijs","response":"success"},{"item":"pi-camera","response":"success"},{"item":"pi-spi","response":"success"},{"item":"pica","response":"success"},{"item":"pick-deep","response":"success"},{"item":"pick-weight","response":"success"},{"item":"pickadate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"picturefill","response":"success"},{"item":"pid-from-port","response":"success"},{"item":"pidusage","response":"success"},{"item":"pify","response":"success"},{"item":"pigpio","response":"success"},{"item":"pigpio-dht","response":"success"},{"item":"pikaday","response":"success"},{"item":"pikaday-time","response":"success"},{"item":"ping","response":"success"},{"item":"pinkyswear","response":"success"},{"item":"pino","response":"success"},{"item":"pino-http","response":"success"},{"item":"pino-multi-stream","response":"success"},{"item":"pino-std-serializers","response":"success"},{"item":"pinterest-sdk","response":"success"},{"item":"pinyin","response":"success"},{"item":"piwik-tracker","response":"success"},{"item":"pixelmatch","response":"success"},{"item":"pixl-xml","response":"success"},{"item":"pizzip","response":"success"},{"item":"pkcs7-padding","response":"success"},{"item":"pkgcloud","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pkijs","response":"success"},{"item":"places","response":"success"},{"item":"plaid-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"platform","response":"success"},{"item":"playerframework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"playmusic","response":"success"},{"item":"pleasejs","response":"success"},{"item":"plist","response":"success"},{"item":"plotly.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"plugapi","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plugin-error","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plupload","response":"success"},{"item":"pluralize","response":"success"},{"item":"plurals-cldr","response":"success"},{"item":"png.js","response":"success"},{"item":"pngjs","response":"success"},{"item":"pngjs2","response":"success"},{"item":"pngquant-bin","response":"success"},{"item":"pnpapi","response":"success"},{"item":"podcast","response":"success"},{"item":"podium","response":"success"},{"item":"poi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"point-in-polygon","response":"success"},{"item":"poker-evaluator","response":"success"},{"item":"pollyjs__adapter","response":"success"},{"item":"pollyjs__adapter-fetch","response":"success"},{"item":"pollyjs__adapter-node-http","response":"success"},{"item":"pollyjs__adapter-puppeteer","response":"success"},{"item":"pollyjs__adapter-xhr","response":"success"},{"item":"pollyjs__core","response":"success"},{"item":"pollyjs__node-server","response":"success"},{"item":"pollyjs__persister","response":"success"},{"item":"pollyjs__persister-fs","response":"success"},{"item":"pollyjs__persister-local-storage","response":"success"},{"item":"pollyjs__persister-rest","response":"success"},{"item":"pollyjs__utils","response":"success"},{"item":"polyfill-service","response":"success"},{"item":"polygon","response":"success"},{"item":"polygons-intersect","response":"success"},{"item":"polylabel","response":"success"},{"item":"polyline","response":"success"},{"item":"polymer","response":"success"},{"item":"polymer-ts","response":"success"},{"item":"popcorn","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'kind' of undefined\n"},{"item":"port-numbers","response":"success"},{"item":"portscanner","response":"success"},{"item":"postal","response":"success"},{"item":"postcss-calc","response":"success"},{"item":"postcss-custom-properties","response":"success"},{"item":"postcss-icss-values","response":"success"},{"item":"postcss-import","response":"success"},{"item":"postcss-load-config","response":"success"},{"item":"postcss-modules-extract-imports","response":"success"},{"item":"postcss-modules-local-by-default","response":"success"},{"item":"postcss-modules-resolve-imports","response":"success"},{"item":"postcss-modules-scope","response":"success"},{"item":"postcss-modules-values","response":"success"},{"item":"postcss-nested","response":"success"},{"item":"postcss-reporter","response":"success"},{"item":"postcss-url","response":"success"},{"item":"poster-image","response":"success"},{"item":"postlight__mercury-parser","response":"success"},{"item":"postman-collection","response":"success"},{"item":"postmate","response":"success"},{"item":"pouch-redux-middleware","response":"success"},{"item":"pouchdb","response":"success"},{"item":"pouchdb-adapter-cordova-sqlite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-fruitdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-http","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-idb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-leveldb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-localstorage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-memory","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-node-websql","response":"success"},{"item":"pouchdb-adapter-websql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-browser","response":"success"},{"item":"pouchdb-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-http","response":"success"},{"item":"pouchdb-live-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-mapreduce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-replication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-upsert","response":"success"},{"item":"power-assert","response":"success"},{"item":"power-assert-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"powerapps-component-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/powerapps-component-framework"},{"item":"powerbi-visuals-tools","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"preact-i18n","response":"success"},{"item":"precise","response":"success"},{"item":"precond","response":"success"},{"item":"preferred-pm","response":"success"},{"item":"prefixfree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"preloadjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prelude-ls","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier-package-json","response":"success"},{"item":"pretty","response":"success"},{"item":"pretty-hrtime","response":"success"},{"item":"pretty-time","response":"success"},{"item":"prettyjson","response":"success"},{"item":"preval.macro","response":"success"},{"item":"primus","response":"success"},{"item":"priorityqueuejs","response":"success"},{"item":"prismic-dom","response":"success"},{"item":"prismjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"private-ip","response":"success"},{"item":"probability-distributions","response":"success"},{"item":"procfs-stats","response":"success"},{"item":"proclaim","response":"success"},{"item":"progress","response":"success"},{"item":"progress-bar-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"progress-stream","response":"success"},{"item":"progressbar","response":"success"},{"item":"progressjs","response":"success"},{"item":"proj4","response":"success"},{"item":"proj4leaflet","response":"success"},{"item":"project-name","response":"success"},{"item":"project-oxford","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"prometheus-gc-stats","response":"success"},{"item":"promise-abortable","response":"success"},{"item":"promise-dag","response":"success"},{"item":"promise-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-ftp-common","response":"success"},{"item":"promise-hash","response":"success"},{"item":"promise-inflight","response":"success"},{"item":"promise-map-limit","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise.allsettled","response":"success"},{"item":"promise.prototype.finally","response":"success"},{"item":"promised-ldap","response":"success"},{"item":"promised-temp","response":"success"},{"item":"promisify-node","response":"success"},{"item":"promisify-supertest","response":"success"},{"item":"prompt-sync","response":"success"},{"item":"prompt-sync-history","response":"success"},{"item":"promptly","response":"success"},{"item":"prompts","response":"success"},{"item":"prop-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"proper-lockfile","response":"success"},{"item":"proper-url-join","response":"success"},{"item":"properties-reader","response":"success"},{"item":"prosemirror-collab","response":"success"},{"item":"prosemirror-commands","response":"success"},{"item":"prosemirror-dev-tools","response":"success"},{"item":"prosemirror-dropcursor","response":"success"},{"item":"prosemirror-gapcursor","response":"success"},{"item":"prosemirror-history","response":"success"},{"item":"prosemirror-inputrules","response":"success"},{"item":"prosemirror-keymap","response":"success"},{"item":"prosemirror-markdown","response":"success"},{"item":"prosemirror-menu","response":"success"},{"item":"prosemirror-model","response":"success"},{"item":"prosemirror-schema-basic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"prosemirror-schema-list","response":"success"},{"item":"prosemirror-state","response":"success"},{"item":"prosemirror-test-builder","response":"success"},{"item":"prosemirror-transform","response":"success"},{"item":"prosemirror-view","response":"success"},{"item":"protoc-plugin","response":"success"},{"item":"protocol-buffers-schema","response":"success"},{"item":"protocols","response":"success"},{"item":"proton-native","response":"success"},{"item":"protoo-server","response":"success"},{"item":"protractor-browser-logs","response":"success"},{"item":"protractor-helpers","response":"success"},{"item":"protractor-http-mock","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"provinces","response":"success"},{"item":"proxy-addr","response":"success"},{"item":"proxy-from-env","response":"success"},{"item":"proxy-lists","response":"success"},{"item":"proxy-verifier","response":"success"},{"item":"proxyquire","response":"success"},{"item":"ps-tree","response":"success"},{"item":"pseudo-audio-param","response":"success"},{"item":"psl","response":"success"},{"item":"ptomasroos__react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"pty.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pubnub","response":"success"},{"item":"pubsub-js","response":"success"},{"item":"pug","response":"success"},{"item":"pull-stream","response":"success"},{"item":"pulltorefreshjs","response":"success"},{"item":"pulsar-client","response":"success"},{"item":"pump","response":"success"},{"item":"pumpify","response":"success"},{"item":"punycode","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"puppeteer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"puppeteer-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"purdy","response":"success"},{"item":"pure-render-decorator","response":"success"},{"item":"purifycss-webpack","response":"success"},{"item":"purl","response":"success"},{"item":"pusher-js","response":"success"},{"item":"pusher__chatkit-client","response":"success"},{"item":"pvutils","response":"success"},{"item":"python-shell","response":"success"},{"item":"python-struct","response":"success"},{"item":"q","response":"success"},{"item":"q-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"q-retry","response":"success"},{"item":"qhistory","response":"success"},{"item":"qiniu-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik-engineapi","response":"success"},{"item":"qlik-visualizationextensions","response":"success"},{"item":"qr-image","response":"success"},{"item":"qrcode","response":"success"},{"item":"qrcode-svg","response":"success"},{"item":"qrcode.react","response":"success"},{"item":"qs","response":"success"},{"item":"qs-middleware","response":"success"},{"item":"qtip2","response":"success"},{"item":"querystringify","response":"success"},{"item":"quick-hash","response":"success"},{"item":"quill","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\n\n../DefinitelyTyped/types/quill/node_modules/quill-delta/dist/Delta.d.ts(1,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/quill/node_modules/fast-diff/diff\"' can only be default-imported using the 'esModuleInterop' flag\n"},{"item":"quixote","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"quoted-printable","response":"success"},{"item":"qwest","response":"success"},{"item":"r-script","response":"success"},{"item":"rabbit.js","response":"success"},{"item":"rabbitmq-schema","response":"success"},{"item":"radium","response":"success"},{"item":"radius","response":"success"},{"item":"radix64","response":"success"},{"item":"raf","response":"success"},{"item":"raf-schd","response":"success"},{"item":"ramda","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"random","response":"success"},{"item":"random-boolean","response":"success"},{"item":"random-bytes","response":"success"},{"item":"random-normal","response":"success"},{"item":"random-number","response":"success"},{"item":"random-seed","response":"success"},{"item":"random-string","response":"success"},{"item":"random-useragent","response":"success"},{"item":"randombytes","response":"success"},{"item":"randomcolor","response":"success"},{"item":"randomstring","response":"success"},{"item":"range-parser","response":"success"},{"item":"range_check","response":"success"},{"item":"rangy","response":"success"},{"item":"rangyinputs","response":"success"},{"item":"ranjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raphael","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"rappid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rascal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rasha","response":"success"},{"item":"raspi","response":"success"},{"item":"raspi-board","response":"success"},{"item":"raspi-gpio","response":"success"},{"item":"raspi-i2c","response":"success"},{"item":"raspi-led","response":"success"},{"item":"raspi-onewire","response":"success"},{"item":"raspi-peripheral","response":"success"},{"item":"raspi-pwm","response":"success"},{"item":"raspi-serial","response":"success"},{"item":"raspi-soft-pwm","response":"success"},{"item":"rate-limit-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"ratelimiter","response":"success"},{"item":"raty","response":"success"},{"item":"raven","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raven-for-redux","response":"success"},{"item":"rax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"raygun","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raygun4js","response":"success"},{"item":"rbac-a","response":"success"},{"item":"rbush","response":"success"},{"item":"rc","response":"success"},{"item":"rc-select","response":"success"},{"item":"rc-slider","response":"success"},{"item":"rc-steps","response":"success"},{"item":"rc-switch","response":"success"},{"item":"rc-time-picker","response":"success"},{"item":"rc-tooltip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rc-tree","response":"success"},{"item":"rcloader","response":"success"},{"item":"rdf-data-model","response":"success"},{"item":"rdf-dataset-ext","response":"success"},{"item":"rdf-dataset-indexed","response":"success"},{"item":"rdf-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"rdf-js","response":"success"},{"item":"rdf-transform-triple-to-quad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__dataset","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'ids' of undefined\n"},{"item":"rdfjs__express-handler","response":"success"},{"item":"rdfjs__fetch","response":"success"},{"item":"rdfjs__fetch-lite","response":"success"},{"item":"rdfjs__formats-common","response":"success"},{"item":"rdfjs__namespace","response":"success"},{"item":"rdfjs__parser-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__parser-n3","response":"success"},{"item":"rdfjs__serializer-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__serializer-jsonld-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__sink-map","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__term-set","response":"success"},{"item":"rdfjs__to-ntriples","response":"success"},{"item":"rdflib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"re-base","response":"success"},{"item":"reach__alert","response":"success"},{"item":"reach__alert-dialog","response":"success"},{"item":"reach__auto-id","response":"success"},{"item":"reach__combobox","response":"success"},{"item":"reach__dialog","response":"success"},{"item":"reach__menu-button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reach__rect","response":"success"},{"item":"reach__router","response":"success"},{"item":"reach__skip-nav","response":"success"},{"item":"reach__tabs","response":"success"},{"item":"reach__tooltip","response":"success"},{"item":"reach__utils","response":"success"},{"item":"reach__visually-hidden","response":"success"},{"item":"reach__window-size","response":"success"},{"item":"react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-adal","response":"success"},{"item":"react-adaptive-hooks","response":"success"},{"item":"react-add-to-calendar","response":"success"},{"item":"react-addons-create-fragment","response":"success"},{"item":"react-addons-css-transition-group","response":"success"},{"item":"react-addons-linked-state-mixin","response":"success"},{"item":"react-addons-perf","response":"success"},{"item":"react-addons-pure-render-mixin","response":"success"},{"item":"react-addons-shallow-compare","response":"success"},{"item":"react-addons-test-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-addons-transition-group","response":"success"},{"item":"react-addons-update","response":"success"},{"item":"react-albus","response":"success"},{"item":"react-alert","response":"success"},{"item":"react-amplitude","response":"success"},{"item":"react-animate-on-scroll","response":"success"},{"item":"react-app","response":"success"},{"item":"react-aria-live","response":"success"},{"item":"react-aria-menubutton","response":"success"},{"item":"react-aria-modal","response":"success"},{"item":"react-audio-player","response":"success"},{"item":"react-autocomplete","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"react-autosuggest","response":"success"},{"item":"react-avatar-editor","response":"success"},{"item":"react-axe","response":"success"},{"item":"react-beautiful-dnd","response":"success"},{"item":"react-beforeunload","response":"success"},{"item":"react-better-password","response":"success"},{"item":"react-big-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-big-scheduler","response":"success"},{"item":"react-blessed","response":"success"},{"item":"react-body-classname","response":"success"},{"item":"react-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-bootstrap-date-picker","response":"success"},{"item":"react-bootstrap-daterangepicker","response":"success"},{"item":"react-bootstrap-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-bootstrap-table-next","response":"success"},{"item":"react-bootstrap-table2-filter","response":"success"},{"item":"react-bootstrap-table2-paginator","response":"success"},{"item":"react-bootstrap-table2-toolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-bootstrap-typeahead","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-breadcrumbs","response":"success"},{"item":"react-breadcrumbs-dynamic","response":"success"},{"item":"react-broadcast","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-burger-menu","response":"success"},{"item":"react-bytesize-icons","response":"success"},{"item":"react-cache","response":"success"},{"item":"react-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-calendar-heatmap","response":"success"},{"item":"react-calendar-timeline","response":"success"},{"item":"react-canvas-draw","response":"success"},{"item":"react-cartographer","response":"success"},{"item":"react-chat-widget","response":"success"},{"item":"react-click-outside","response":"success"},{"item":"react-click-outside-hook","response":"success"},{"item":"react-close-on-escape","response":"success"},{"item":"react-codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-coinhive","response":"success"},{"item":"react-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-confirm","response":"success"},{"item":"react-cookies","response":"success"},{"item":"react-copy-to-clipboard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-copy-write","response":"success"},{"item":"react-count-to","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-countdown-circle-timer","response":"success"},{"item":"react-countup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-credit-cards","response":"success"},{"item":"react-cropper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-css-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-css-modules","response":"success"},{"item":"react-css-transition-replace","response":"success"},{"item":"react-csv","response":"success"},{"item":"react-currency-formatter","response":"success"},{"item":"react-custom-scrollbars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-d3-graph","response":"success"},{"item":"react-data-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"react-datagrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-date-range","response":"success"},{"item":"react-datepicker","response":"success"},{"item":"react-daterange-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"react-dates","response":"success"},{"item":"react-dev-utils","response":"success"},{"item":"react-devtools","response":"success"},{"item":"react-div-100vh","response":"success"},{"item":"react-dnd-multi-backend","response":"success"},{"item":"react-dnd-scrollzone","response":"success"},{"item":"react-document-meta","response":"success"},{"item":"react-document-title","response":"success"},{"item":"react-dom","response":"success"},{"item":"react-dom-factories","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-draft-wysiwyg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-dragtastic","response":"success"},{"item":"react-dynamic-number","response":"success"},{"item":"react-easy-chart","response":"success"},{"item":"react-easy-crop","response":"success"},{"item":"react-editext","response":"success"},{"item":"react-elemental","response":"success"},{"item":"react-email-editor","response":"success"},{"item":"react-event-listener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-fa","response":"success"},{"item":"react-facebook-login","response":"success"},{"item":"react-facebook-login-component","response":"success"},{"item":"react-fade-in","response":"success"},{"item":"react-faux-dom","response":"success"},{"item":"react-file-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-file-reader-input","response":"success"},{"item":"react-filepond","response":"success"},{"item":"react-final-form-listeners","response":"success"},{"item":"react-flag-icon-css","response":"success"},{"item":"react-flags-select","response":"success"},{"item":"react-flatpickr","response":"success"},{"item":"react-flex","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-flexr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-fontawesome","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-form","response":"success"},{"item":"react-foundation","response":"success"},{"item":"react-frame-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-frontload","response":"success"},{"item":"react-gamepad","response":"success"},{"item":"react-gateway","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-geosuggest","response":"success"},{"item":"react-github-button","response":"success"},{"item":"react-global-configuration","response":"success"},{"item":"react-google-login-component","response":"success"},{"item":"react-google-maps-loader","response":"success"},{"item":"react-google-places-suggest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-google-recaptcha","response":"success"},{"item":"react-gravatar","response":"success"},{"item":"react-grid-layout","response":"success"},{"item":"react-gtm-module","response":"success"},{"item":"react-hamburger-menu","response":"success"},{"item":"react-hammerjs","response":"success"},{"item":"react-headroom","response":"success"},{"item":"react-helmet","response":"success"},{"item":"react-helmet-with-visor","response":"success"},{"item":"react-highcharts","response":"success"},{"item":"react-highlight","response":"success"},{"item":"react-highlight-words","response":"success"},{"item":"react-highlight.js","response":"success"},{"item":"react-highlighter","response":"success"},{"item":"react-holder","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"react-hook-mousetrap","response":"success"},{"item":"react-hooks-helper","response":"success"},{"item":"react-howler","response":"success"},{"item":"react-html-parser","response":"success"},{"item":"react-hyperscript","response":"success"},{"item":"react-icofont","response":"success"},{"item":"react-icon-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-image-crop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"react-image-fallback","response":"success"},{"item":"react-image-gallery","response":"success"},{"item":"react-image-magnify","response":"success"},{"item":"react-imageloader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-images","response":"success"},{"item":"react-imgix","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-imgpro","response":"success"},{"item":"react-immutable-proptypes","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-infinite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-calendar","response":"success"},{"item":"react-infinite-scroll-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-input-autosize","response":"success"},{"item":"react-input-calendar","response":"success"},{"item":"react-input-mask","response":"success"},{"item":"react-inspector","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-instantsearch","response":"success"},{"item":"react-instantsearch-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-interactive","response":"success"},{"item":"react-intl-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-is","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-is-deprecated","response":"success"},{"item":"react-js-pagination","response":"success"},{"item":"react-json","response":"success"},{"item":"react-json-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-jsonschema-form","response":"success"},{"item":"react-kawaii","response":"success"},{"item":"react-lazy-load-image-component","response":"success"},{"item":"react-lazyload","response":"success"},{"item":"react-lazylog","response":"success"},{"item":"react-leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-leaflet-markercluster","response":"success"},{"item":"react-leaflet-sidebarv2","response":"success"},{"item":"react-lifecycle-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-lifecycles-compat","response":"success"},{"item":"react-linkify","response":"success"},{"item":"react-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-loadable","response":"success"},{"item":"react-loadable-visibility","response":"success"},{"item":"react-loader","response":"success"},{"item":"react-loader-spinner","response":"success"},{"item":"react-lottie","response":"success"},{"item":"react-mailchimp-subscribe","response":"success"},{"item":"react-map-gl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-maskedinput","response":"success"},{"item":"react-material-ui-form-validator","response":"success"},{"item":"react-mathquill","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-mce","response":"success"},{"item":"react-mdl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-measure","response":"success"},{"item":"react-medium-image-zoom","response":"success"},{"item":"react-mentions","response":"success"},{"item":"react-messenger-checkbox","response":"success"},{"item":"react-mic","response":"success"},{"item":"react-mixin","response":"success"},{"item":"react-modal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"react-motion","response":"success"},{"item":"react-motion-loop","response":"success"},{"item":"react-motion-slider","response":"success"},{"item":"react-motion-ui-pack","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-actionsheet","response":"success"},{"item":"react-native-android-taskdescription","response":"success"},{"item":"react-native-app-intro-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-app-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-appsflyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-audio","response":"success"},{"item":"react-native-auth0","response":"success"},{"item":"react-native-autocomplete-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-awesome-card-io","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-background-downloader","response":"success"},{"item":"react-native-background-timer","response":"success"},{"item":"react-native-bluetooth-serial","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendar-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-canvas","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-charts-wrapper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-check-box","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-communications","response":"success"},{"item":"react-native-community__cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-native-custom-tabs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-datawedge-intents","response":"success"},{"item":"react-native-datepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialogflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-doc-viewer","response":"success"},{"item":"react-native-document-picker","response":"success"},{"item":"react-native-dotenv","response":"success"},{"item":"react-native-draggable-flatlist","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer-layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-easy-upgrade","response":"success"},{"item":"react-native-elevated-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fbsdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fetch-blob","response":"success"},{"item":"react-native-flip-card","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-google-signin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-honeywell-scanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-htmlview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-huawei-protected-apps","response":"success"},{"item":"react-native-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-incall-manager","response":"success"},{"item":"react-native-indicators","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-input-spinner","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-joi","response":"success"},{"item":"react-native-keep-awake","response":"success"},{"item":"react-native-keyboard-spacer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-loading-spinner-overlay","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-maps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-design-searchbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-dropdown","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-textfield","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mixpanel","response":"success"},{"item":"react-native-modal-dropdown","response":"success"},{"item":"react-native-modal-filter-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-modalbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-navbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-orientation","response":"success"},{"item":"react-native-pdf-lib","response":"success"},{"item":"react-native-percentage-circle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-phone-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-photo-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-platform-touchable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-popup-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-privacy-snapshot","response":"success"},{"item":"react-native-push-notification","response":"success"},{"item":"react-native-qrcode","response":"success"},{"item":"react-native-read-more-text","response":"success"},{"item":"react-native-referrer","response":"success"},{"item":"react-native-restart","response":"success"},{"item":"react-native-rss-parser","response":"success"},{"item":"react-native-safari-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scaled-image","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scrollable-tab-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"react-native-sensor-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-settings-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share-extension","response":"success"},{"item":"react-native-share-menu","response":"success"},{"item":"react-native-signature-capture","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snackbar-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snap-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sqlite-storage","response":"success"},{"item":"react-native-star-rating","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-status-bar-height","response":"success"},{"item":"react-native-svg-charts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-svg-uri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-swiper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-native-tab-navigator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-text-input-mask","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-toast-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-touch-id","response":"success"},{"item":"react-native-uuid","response":"success"},{"item":"react-native-uuid-generator","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-version-check","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-version-number","response":"success"},{"item":"react-native-video","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-video-player","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-view-pdf","response":"success"},{"item":"react-native-webrtc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-zeroconf","response":"success"},{"item":"react-native-zss-rich-text-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-no-ssr","response":"success"},{"item":"react-notification-system","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notification-system-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notify-toast","response":"success"},{"item":"react-numeric-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"react-offcanvas","response":"success"},{"item":"react-onclickoutside","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-onsenui","response":"success"},{"item":"react-outside-click-handler","response":"success"},{"item":"react-overlays","response":"success"},{"item":"react-paginate","response":"success"},{"item":"react-panelgroup","response":"success"},{"item":"react-pdf","response":"success"},{"item":"react-phone-number-input","response":"success"},{"item":"react-photoswipe","response":"success"},{"item":"react-places-autocomplete","response":"success"},{"item":"react-plaid-link","response":"success"},{"item":"react-plotly.js","response":"success"},{"item":"react-plyr","response":"success"},{"item":"react-pointable","response":"success"},{"item":"react-popover","response":"success"},{"item":"react-portal","response":"success"},{"item":"react-primitives","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-props-decorators","response":"success"},{"item":"react-qr-reader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-query","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-radio-group","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-rangeslider","response":"success"},{"item":"react-recaptcha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-recaptcha-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-reconciler","response":"success"},{"item":"react-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-redux-epic","response":"success"},{"item":"react-redux-i18n","response":"success"},{"item":"react-redux-toastr","response":"success"},{"item":"react-relay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-request","response":"success"},{"item":"react-resizable","response":"success"},{"item":"react-resize-detector","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"react-resolver","response":"success"},{"item":"react-responsive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-bootstrap","response":"success"},{"item":"react-router-config","response":"success"},{"item":"react-router-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-guard","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-hash-link","response":"success"},{"item":"react-router-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-navigation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-navigation-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-param-link","response":"success"},{"item":"react-router-redux","response":"success"},{"item":"react-router-tabs","response":"success"},{"item":"react-rte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-s-alert","response":"success"},{"item":"react-scroll","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-scroll-into-view-if-needed","response":"success"},{"item":"react-scroll-rotate","response":"success"},{"item":"react-scrollable-anchor","response":"success"},{"item":"react-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"react-scrollbar-size","response":"success"},{"item":"react-scrollspy","response":"success"},{"item":"react-select","response":"success"},{"item":"react-shadow-dom-retarget-events","response":"success"},{"item":"react-share","response":"success"},{"item":"react-show-more","response":"success"},{"item":"react-side-effect","response":"success"},{"item":"react-sidebar","response":"success"},{"item":"react-signature-canvas","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-simple-maps","response":"success"},{"item":"react-sizes","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-sketchapp","response":"success"},{"item":"react-slick","response":"success"},{"item":"react-slider","response":"success"},{"item":"react-smooth-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"react-sortable-tree","response":"success"},{"item":"react-sortable-tree-theme-file-explorer","response":"success"},{"item":"react-sound","response":"success"},{"item":"react-sparklines","response":"success"},{"item":"react-spinkit","response":"success"},{"item":"react-spinner","response":"success"},{"item":"react-splitter-layout","response":"success"},{"item":"react-star-rating-component","response":"success"},{"item":"react-stars","response":"success"},{"item":"react-sticky","response":"success"},{"item":"react-sticky-el","response":"success"},{"item":"react-stickynode","response":"success"},{"item":"react-stripe-elements","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-svg-inline","response":"success"},{"item":"react-svg-pan-zoom","response":"success"},{"item":"react-swf","response":"success"},{"item":"react-swipe","response":"success"},{"item":"react-swipeable-views","response":"success"},{"item":"react-swipeable-views-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-syntax-highlighter","response":"success"},{"item":"react-table","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-table-filter","response":"success"},{"item":"react-tabs","response":"success"},{"item":"react-tabs-redux","response":"success"},{"item":"react-tag-autocomplete","response":"success"},{"item":"react-tag-input","response":"success"},{"item":"react-tagcloud","response":"success"},{"item":"react-tagsinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"react-tap-event-plugin","response":"success"},{"item":"react-test-renderer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-text-mask","response":"success"},{"item":"react-text-truncate","response":"success"},{"item":"react-textarea-autosize","response":"success"},{"item":"react-timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-timeout","response":"success"},{"item":"react-toast-notifications","response":"success"},{"item":"react-toastr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-toggle","response":"success"},{"item":"react-tooltip","response":"success"},{"item":"react-touch","response":"success"},{"item":"react-tracking","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-transition-group","response":"success"},{"item":"react-treeview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-truncate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"react-twitter-auth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-typing-animation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-typist","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-ultimate-pagination","response":"success"},{"item":"react-user-tour","response":"success"},{"item":"react-vega","response":"success"},{"item":"react-vertical-timeline-component","response":"success"},{"item":"react-virtual-keyboard","response":"success"},{"item":"react-virtualized","response":"success"},{"item":"react-virtualized-auto-sizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-virtualized-select","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-visibility-sensor","response":"success"},{"item":"react-wait","response":"success"},{"item":"react-weui","response":"success"},{"item":"react-widgets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-widgets-moment","response":"success"},{"item":"react-window","response":"success"},{"item":"react-window-infinite-loader","response":"success"},{"item":"react-window-size","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-with-styles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-wow","response":"success"},{"item":"react-youtube","response":"success"},{"item":"react-youtube-embed","response":"success"},{"item":"reactable","response":"success"},{"item":"reactabular-dnd","response":"success"},{"item":"reactabular-sticky","response":"success"},{"item":"reactabular-table","response":"success"},{"item":"reactcss","response":"success"},{"item":"reactour","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reactstrap","response":"success"},{"item":"read","response":"success"},{"item":"read-package-tree","response":"success"},{"item":"readable-stream","response":"success"},{"item":"readdir-stream","response":"success"},{"item":"readline-sync","response":"success"},{"item":"readline-transform","response":"success"},{"item":"readmore-js","response":"success"},{"item":"reapop","response":"success"},{"item":"rebass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebind-host","response":"success"},{"item":"recaptcha2","response":"success"},{"item":"recase","response":"success"},{"item":"recharts","response":"success"},{"item":"recharts-scale","response":"success"},{"item":"rechoir","response":"success"},{"item":"recluster","response":"success"},{"item":"recompose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"reconnect-core","response":"success"},{"item":"reconnectingwebsocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"recorder-js","response":"success"},{"item":"recurly__recurly-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"recursive-readdir","response":"success"},{"item":"redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-errors","response":"success"},{"item":"redis-info","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"redis-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-rate-limiter","response":"success"},{"item":"redis-scripto","response":"success"},{"item":"redlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"redux-action","response":"success"},{"item":"redux-action-utils","response":"success"},{"item":"redux-actions","response":"success"},{"item":"redux-api-middleware","response":"success"},{"item":"redux-async-queue","response":"success"},{"item":"redux-auth-wrapper","response":"success"},{"item":"redux-batched-subscribe","response":"success"},{"item":"redux-cablecar","response":"success"},{"item":"redux-debounced","response":"success"},{"item":"redux-devtools","response":"success"},{"item":"redux-devtools-dock-monitor","response":"success"},{"item":"redux-devtools-log-monitor","response":"success"},{"item":"redux-doghouse","response":"success"},{"item":"redux-duck","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-first-router","response":"success"},{"item":"redux-first-router-link","response":"success"},{"item":"redux-first-router-restore-scroll","response":"success"},{"item":"redux-first-routing","response":"success"},{"item":"redux-form","response":"success"},{"item":"redux-immutable","response":"success"},{"item":"redux-immutable-state-invariant","response":"success"},{"item":"redux-infinite-scroll","response":"success"},{"item":"redux-injectable-store","response":"success"},{"item":"redux-localstorage","response":"success"},{"item":"redux-localstorage-debounce","response":"success"},{"item":"redux-localstorage-filter","response":"success"},{"item":"redux-logger","response":"success"},{"item":"redux-mock-store","response":"success"},{"item":"redux-optimistic-ui","response":"success"},{"item":"redux-orm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"redux-pack","response":"success"},{"item":"redux-persist-transform-encrypt","response":"success"},{"item":"redux-persist-transform-filter","response":"success"},{"item":"redux-promise","response":"success"},{"item":"redux-promise-listener","response":"success"},{"item":"redux-recycle","response":"success"},{"item":"redux-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"redux-saga-routines","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-saga-tester","response":"success"},{"item":"redux-seamless-immutable","response":"success"},{"item":"redux-sentry-middleware","response":"success"},{"item":"redux-shortcuts","response":"success"},{"item":"redux-socket.io","response":"success"},{"item":"redux-state-sync","response":"success"},{"item":"redux-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"redux-storage-engine-jsurl","response":"success"},{"item":"redux-storage-engine-localstorage","response":"success"},{"item":"redux-test-utils","response":"success"},{"item":"redux-testkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"redux-ui","response":"success"},{"item":"ref","response":"success"},{"item":"ref-array","response":"success"},{"item":"ref-array-di","response":"success"},{"item":"ref-napi","response":"success"},{"item":"ref-struct","response":"success"},{"item":"ref-struct-di","response":"success"},{"item":"ref-union","response":"success"},{"item":"ref-union-di","response":"success"},{"item":"reflexbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"reflux","response":"success"},{"item":"refractor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"refresh-fetch","response":"success"},{"item":"registry-auth-token","response":"success"},{"item":"regression","response":"success"},{"item":"rehype-react","response":"success"},{"item":"relateurl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"relaxed-json","response":"success"},{"item":"relay-compiler","response":"success"},{"item":"relay-config","response":"success"},{"item":"relay-runtime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"relay-test-utils","response":"success"},{"item":"rellax","response":"success"},{"item":"remarkable","response":"success"},{"item":"remote-origin-url","response":"success"},{"item":"remote-redux-devtools","response":"success"},{"item":"remotedev-serialize","response":"success"},{"item":"remove-markdown","response":"success"},{"item":"rename","response":"success"},{"item":"repeat-element","response":"success"},{"item":"repeat-string","response":"success"},{"item":"repeating","response":"success"},{"item":"replace-ext","response":"success"},{"item":"replacestream","response":"success"},{"item":"request","response":"success"},{"item":"request-as-curl","response":"success"},{"item":"request-debug","response":"success"},{"item":"request-ip","response":"success"},{"item":"request-promise","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"request-promise-native","response":"success"},{"item":"request-stats","response":"success"},{"item":"requestidlecallback","response":"success"},{"item":"requestretry","response":"success"},{"item":"require-dir","response":"success"},{"item":"require-directory","response":"success"},{"item":"require-from-string","response":"success"},{"item":"require-relative","response":"success"},{"item":"requireindex","response":"success"},{"item":"requirejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'Require', but here has type 'NodeRequire'.\n../DefinitelyTyped/types/node/module.d.ts(57,14): error TS2300: Duplicate identifier 'Module'.\n../DefinitelyTyped/types/requirejs/index.d.ts(38,11): error TS2300: Duplicate identifier 'Module'.\n"},{"item":"requirejs-domready","response":"success"},{"item":"requires-port","response":"success"},{"item":"resemblejs","response":"success"},{"item":"reserved-words","response":"success"},{"item":"reservoir","response":"success"},{"item":"resize-img","response":"success"},{"item":"resize-observer-browser","response":"success"},{"item":"resolve","response":"success"},{"item":"resolve-options","response":"success"},{"item":"resolve-protobuf-schema","response":"success"},{"item":"resourcejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"response-time","response":"success"},{"item":"responselike","response":"success"},{"item":"rest","response":"success"},{"item":"restangular","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"restful.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"restify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restify-cookies","response":"success"},{"item":"restify-cors-middleware","response":"success"},{"item":"restify-errors","response":"success"},{"item":"restify-plugins","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restler","response":"success"},{"item":"restling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"rethinkdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"retinajs","response":"success"},{"item":"retry","response":"success"},{"item":"retry-as-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"revalidate","response":"success"},{"item":"revalidator","response":"success"},{"item":"reveal","response":"success"},{"item":"rewire","response":"success"},{"item":"rfc2047","response":"success"},{"item":"rfdc","response":"success"},{"item":"rgrove__parse-xml","response":"success"},{"item":"rheostat","response":"success"},{"item":"rickshaw","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/rickshaw"},{"item":"right-align","response":"success"},{"item":"rijndael-js","response":"success"},{"item":"rimraf","response":"success"},{"item":"ringbufferjs","response":"success"},{"item":"riot-api-nodejs","response":"success"},{"item":"riot-games-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"riot-route","response":"success"},{"item":"riotcontrol","response":"success"},{"item":"riotjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ripemd160","response":"success"},{"item":"rison","response":"success"},{"item":"rivets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rmc-drawer","response":"success"},{"item":"rmfr","response":"success"},{"item":"rn-app-upgrade","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"rn-fetch-blob","response":"success"},{"item":"roarr","response":"success"},{"item":"robust-point-in-polygon","response":"success"},{"item":"rocksdb","response":"success"},{"item":"rockset","response":"success"},{"item":"roll","response":"success"},{"item":"rolling-rate-limiter","response":"success"},{"item":"rollup-plugin-buble","response":"success"},{"item":"rollup-plugin-json","response":"success"},{"item":"rollup-plugin-node-builtins","response":"success"},{"item":"rollup-plugin-node-globals","response":"success"},{"item":"rollup-plugin-peer-deps-external","response":"success"},{"item":"rollup-plugin-postcss","response":"success"},{"item":"rollup-plugin-progress","response":"success"},{"item":"rollup-plugin-size-snapshot","response":"success"},{"item":"rollup-plugin-sourcemaps","response":"success"},{"item":"rollup-plugin-url","response":"success"},{"item":"rollup-plugin-visualizer","response":"success"},{"item":"rollup__plugin-virtual","response":"success"},{"item":"roman-numerals","response":"success"},{"item":"ronomon__crypto-async","response":"success"},{"item":"rosie","response":"success"},{"item":"roslib","response":"success"},{"item":"route-parser","response":"success"},{"item":"routie","response":"success"},{"item":"rox-browser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-react-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"royalslider","response":"success"},{"item":"rpio","response":"success"},{"item":"rrc","response":"success"},{"item":"rsmq-worker","response":"success"},{"item":"rsocket-core","response":"success"},{"item":"rsocket-flowable","response":"success"},{"item":"rsocket-tcp-client","response":"success"},{"item":"rsocket-tcp-server","response":"success"},{"item":"rsocket-types","response":"success"},{"item":"rsocket-websocket-client","response":"success"},{"item":"rsocket-websocket-server","response":"success"},{"item":"rss","response":"success"},{"item":"rsvp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertyDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null"},{"item":"rsync","response":"success"},{"item":"rtl-detect","response":"success"},{"item":"rtlcss","response":"success"},{"item":"rtp-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rtree","response":"success"},{"item":"run-parallel","response":"success"},{"item":"run-parallel-limit","response":"success"},{"item":"run-sequence","response":"success"},{"item":"runes","response":"success"},{"item":"rwlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"rx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-core","response":"success"},{"item":"rx-core-binding","response":"success"},{"item":"rx-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n"},{"item":"rx-lite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-aggregates","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-backpressure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-coincidence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-experimental","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-joinpatterns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-virtualtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-node","response":"success"},{"item":"rx.wamp","response":"success"},{"item":"s3-download-stream","response":"success"},{"item":"s3-upload-stream","response":"success"},{"item":"s3-uploader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"s3rver","response":"success"},{"item":"sade","response":"success"},{"item":"safari-extension","response":"success"},{"item":"safari-extension-content","response":"success"},{"item":"safe-compare","response":"success"},{"item":"safe-json-stringify","response":"success"},{"item":"safe-regex","response":"success"},{"item":"safe-timers","response":"success"},{"item":"safer-buffer","response":"success"},{"item":"sails.io.js","response":"success"},{"item":"sailthru-client","response":"success"},{"item":"saml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"saml2-js","response":"success"},{"item":"saml20","response":"success"},{"item":"samlp","response":"success"},{"item":"sammy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sanctuary","response":"success"},{"item":"sandboxed-module","response":"success"},{"item":"sane","response":"success"},{"item":"sane-email-validation","response":"success"},{"item":"sanitize-html","response":"success"},{"item":"sanitizer","response":"success"},{"item":"sap__xsenv","response":"success"},{"item":"sarif","response":"success"},{"item":"sasl-anonymous","response":"success"},{"item":"sasl-digest-md5","response":"success"},{"item":"sasl-external","response":"success"},{"item":"sasl-plain","response":"success"},{"item":"sasl-scram-sha-1","response":"success"},{"item":"saslmechanisms","response":"success"},{"item":"saslprep","response":"success"},{"item":"sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sass-graph","response":"success"},{"item":"sat","response":"success"},{"item":"satnav","response":"success"},{"item":"save-csv","response":"success"},{"item":"sawtooth-sdk","response":"success"},{"item":"sax","response":"success"},{"item":"sax-stream","response":"success"},{"item":"saywhen","response":"success"},{"item":"sbd","response":"success"},{"item":"sc-auth","response":"success"},{"item":"sc-broker","response":"success"},{"item":"sc-broker-cluster","response":"success"},{"item":"sc-channel","response":"success"},{"item":"sc-errors","response":"success"},{"item":"sc-framework-health-check","response":"success"},{"item":"sc-hot-reboot","response":"success"},{"item":"scalike","response":"success"},{"item":"scc-broker-client","response":"success"},{"item":"schedule","response":"success"},{"item":"scheduler","response":"success"},{"item":"schema-registry","response":"success"},{"item":"schwifty","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"scoped-http-client","response":"success"},{"item":"scrambo","response":"success"},{"item":"screeps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"screeps-profiler","response":"success"},{"item":"script-ext-html-webpack-plugin","response":"success"},{"item":"scriptable-ios","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scriptjs","response":"success"},{"item":"scroll","response":"success"},{"item":"scroll-into-view","response":"success"},{"item":"scroll-to-element","response":"success"},{"item":"scrollbooster","response":"success"},{"item":"scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scrollparent","response":"success"},{"item":"scrollreveal","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"}] \ No newline at end of file +[{"item":"7zip-min","response":"success"},{"item":"a-big-triangle","response":"success"},{"item":"a11y-dialog","response":"success"},{"item":"abbrev","response":"success"},{"item":"abs","response":"success"},{"item":"absolute","response":"success"},{"item":"abstract-leveldown","response":"success"},{"item":"acc-wizard","response":"success"},{"item":"accept","response":"success"},{"item":"accept-language-parser","response":"success"},{"item":"accepts","response":"success"},{"item":"accounting","response":"success"},{"item":"accurate-interval","response":"success"},{"item":"ace","response":"success"},{"item":"ace-diff","response":"success"},{"item":"acl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"acorn","response":"success"},{"item":"actioncable","response":"success"},{"item":"activedirectory2","response":"success"},{"item":"activestorage","response":"success"},{"item":"activex-access","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adox","response":"success"},{"item":"activex-dao","response":"success"},{"item":"activex-diskquota","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-excel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-faxcomexlib","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-infopath","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-interop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-iwshruntimelibrary","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"activex-libreoffice","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-msforms","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-mshtml","response":"success"},{"item":"activex-msxml2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-office","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-outlook","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-powerpoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-scripting","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-shdocvw","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-shell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-stdole","response":"success"},{"item":"activex-vbide","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-wia","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-word","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"adal-angular","response":"success"},{"item":"add-zero","response":"success"},{"item":"add2home","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/add2home"},{"item":"adhan","response":"success"},{"item":"adlib","response":"success"},{"item":"adm-zip","response":"success"},{"item":"adone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aes-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aframe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ag-channel","response":"success"},{"item":"ag-simple-broker","response":"success"},{"item":"agenda","response":"success"},{"item":"agent-base","response":"success"},{"item":"agiledigital__mule-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"agilite","response":"success"},{"item":"agora-rtc-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"airbnb-prop-types","response":"success"},{"item":"airtable","response":"success"},{"item":"ajv-async","response":"success"},{"item":"ajv-errors","response":"success"},{"item":"ajv-keywords","response":"success"},{"item":"ajv-merge-patch","response":"success"},{"item":"ajv-pack","response":"success"},{"item":"akamai-edgeworkers","response":"success"},{"item":"akumina-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ale-url-parser","response":"success"},{"item":"alertify","response":"success"},{"item":"alex","response":"success"},{"item":"alexa-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"alexa-voice-service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"algebra.js","response":"success"},{"item":"algoliasearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"algoliasearch-helper","response":"success"},{"item":"ali-app","response":"success"},{"item":"ali-oss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"align-text","response":"success"},{"item":"alks-node","response":"success"},{"item":"all-the-package-names","response":"success"},{"item":"alloy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"allure-js-commons","response":"success"},{"item":"almost-equal","response":"success"},{"item":"alpha-bravo","response":"success"},{"item":"alt","response":"success"},{"item":"amap-js-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api"},{"item":"amap-js-api-arrival-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-autocomplete","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-city-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-control-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-district-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-driving","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geocoder","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geolocation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-heatmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-indoor-map","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-line-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map-type","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map3d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api-map3d"},{"item":"amap-js-api-overview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-place-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-riding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-scale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-station-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-tool-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-transfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amazon-cognito-auth-js","response":"success"},{"item":"amazon-connect-streams","response":"success"},{"item":"amazon-product-api","response":"success"},{"item":"amcharts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amp","response":"success"},{"item":"amp-message","response":"success"},{"item":"amphtml-validator","response":"success"},{"item":"amplifier","response":"success"},{"item":"amplify","response":"success"},{"item":"amplify-deferred","response":"success"},{"item":"amplitude-js","response":"success"},{"item":"amqp","response":"success"},{"item":"amqp-connection-manager","response":"success"},{"item":"amqp-rpc","response":"success"},{"item":"amqplib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"analytics-node","response":"success"},{"item":"anchor-js","response":"success"},{"item":"angular","response":"success"},{"item":"angular-agility","response":"success"},{"item":"angular-animate","response":"success"},{"item":"angular-aria","response":"success"},{"item":"angular-block-ui","response":"success"},{"item":"angular-bootstrap-calendar","response":"success"},{"item":"angular-bootstrap-lightbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-breadcrumb","response":"success"},{"item":"angular-clipboard","response":"success"},{"item":"angular-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-cookies","response":"success"},{"item":"angular-deferred-bootstrap","response":"success"},{"item":"angular-desktop-notification","response":"success"},{"item":"angular-dialog-service","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-environment","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-es","response":"success"},{"item":"angular-feature-flags","response":"success"},{"item":"angular-file-saver","response":"success"},{"item":"angular-file-upload","response":"success"},{"item":"angular-formly","response":"success"},{"item":"angular-fullscreen","response":"success"},{"item":"angular-gettext","response":"success"},{"item":"angular-google-analytics","response":"success"},{"item":"angular-gridster","response":"success"},{"item":"angular-growl-v2","response":"success"},{"item":"angular-hotkeys","response":"success"},{"item":"angular-http-auth","response":"success"},{"item":"angular-httpi","response":"success"},{"item":"angular-idle","response":"success"},{"item":"angular-jwt","response":"success"},{"item":"angular-load","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-loading-bar","response":"success"},{"item":"angular-local-storage","response":"success"},{"item":"angular-localforage","response":"success"},{"item":"angular-locker","response":"success"},{"item":"angular-material","response":"success"},{"item":"angular-media-queries","response":"success"},{"item":"angular-meteor","response":"success"},{"item":"angular-mocks","response":"success"},{"item":"angular-modal","response":"success"},{"item":"angular-notifications","response":"success"},{"item":"angular-notify","response":"success"},{"item":"angular-oauth2","response":"success"},{"item":"angular-odata-resources","response":"success"},{"item":"angular-pdfjs-viewer","response":"success"},{"item":"angular-permission","response":"success"},{"item":"angular-promise-tracker","response":"success"},{"item":"angular-q-extras","response":"success"},{"item":"angular-q-spread","response":"success"},{"item":"angular-resource","response":"success"},{"item":"angular-route","response":"success"},{"item":"angular-sanitize","response":"success"},{"item":"angular-scenario","response":"success"},{"item":"angular-scroll","response":"success"},{"item":"angular-signalr-hub","response":"success"},{"item":"angular-spinner","response":"success"},{"item":"angular-storage","response":"success"},{"item":"angular-strap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-toastr","response":"success"},{"item":"angular-toasty","response":"success"},{"item":"angular-tooltips","response":"success"},{"item":"angular-translate","response":"success"},{"item":"angular-ui-bootstrap","response":"success"},{"item":"angular-ui-notification","response":"success"},{"item":"angular-ui-router","response":"success"},{"item":"angular-ui-scroll","response":"success"},{"item":"angular-ui-sortable","response":"success"},{"item":"angular-ui-tree","response":"success"},{"item":"angular-websocket","response":"success"},{"item":"angular-wizard","response":"success"},{"item":"angular-xeditable","response":"success"},{"item":"angular.throttle","response":"success"},{"item":"angularfire","response":"success"},{"item":"angularlocalstorage","response":"success"},{"item":"angulartics","response":"success"},{"item":"animation-frame","response":"success"},{"item":"animejs","response":"success"},{"item":"annyang","response":"success"},{"item":"ansi","response":"success"},{"item":"ansi-escape-sequences","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ansi-styles","response":"success"},{"item":"ansicolors","response":"success"},{"item":"antlr4","response":"success"},{"item":"antlr4-autosuggest","response":"success"},{"item":"any-db","response":"success"},{"item":"any-db-transaction","response":"success"},{"item":"anymatch","response":"success"},{"item":"anyproxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aos","response":"success"},{"item":"apex.js","response":"success"},{"item":"api-error-handler","response":"success"},{"item":"apicache","response":"success"},{"item":"apicalypse","response":"success"},{"item":"apigee-access","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apimocker","response":"success"},{"item":"apollo-codegen","response":"success"},{"item":"apollo-upload-client","response":"success"},{"item":"apostrophe","response":"success"},{"item":"app-module-path","response":"success"},{"item":"app-root-dir","response":"success"},{"item":"app-root-path","response":"success"},{"item":"appdmg","response":"success"},{"item":"append-query","response":"success"},{"item":"appframework","response":"success"},{"item":"apple-mapkit-js","response":"success"},{"item":"apple-music-api","response":"success"},{"item":"apple-signin-api","response":"success"},{"item":"applepayjs","response":"success"},{"item":"appletvjs","response":"success"},{"item":"applicationinsights-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apptimize__apptimize-web-sdk","response":"success"},{"item":"aqb","response":"success"},{"item":"arangodb","response":"success"},{"item":"arbiter","response":"success"},{"item":"arcgis-js-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"arcgis-rest-api","response":"success"},{"item":"arcgis-to-geojson-utils","response":"success"},{"item":"architect","response":"success"},{"item":"archiver","response":"success"},{"item":"archy","response":"success"},{"item":"are-we-there-yet","response":"success"},{"item":"argon2-browser","response":"success"},{"item":"argparse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"args","response":"success"},{"item":"argv","response":"success"},{"item":"aria-query","response":"success"},{"item":"arr-diff","response":"success"},{"item":"arr-union","response":"success"},{"item":"array-binarysearch.closest","response":"success"},{"item":"array-find-index","response":"success"},{"item":"array-foreach","response":"success"},{"item":"array-initial","response":"success"},{"item":"array-sort","response":"success"},{"item":"array-unique","response":"success"},{"item":"array.from","response":"success"},{"item":"array.prototype.flat","response":"success"},{"item":"array.prototype.flatmap","response":"success"},{"item":"artillery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'find' of undefined\n"},{"item":"asana","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asap","response":"success"},{"item":"ascii-art","response":"success"},{"item":"ascii2mathml","response":"success"},{"item":"asciichart","response":"success"},{"item":"asciify","response":"success"},{"item":"asenv","response":"success"},{"item":"asn1","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asn1js","response":"success"},{"item":"aspnet-identity-pw","response":"success"},{"item":"assert","response":"success"},{"item":"assert-equal-jsx","response":"success"},{"item":"assert-plus","response":"success"},{"item":"assertsharp","response":"success"},{"item":"assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n"},{"item":"astring","response":"success"},{"item":"async","response":"success"},{"item":"async-busboy","response":"success"},{"item":"async-cache","response":"success"},{"item":"async-eventemitter","response":"success"},{"item":"async-iterable-stream","response":"success"},{"item":"async-lock","response":"success"},{"item":"async-polling","response":"success"},{"item":"async-retry","response":"success"},{"item":"async-stream-emitter","response":"success"},{"item":"async-stream-generator","response":"success"},{"item":"async-writer","response":"success"},{"item":"async.nexttick","response":"success"},{"item":"asynciterator","response":"success"},{"item":"athenajs","response":"success"},{"item":"atlaskit__button","response":"success"},{"item":"atlaskit__calendar","response":"success"},{"item":"atlaskit__feedback-collector","response":"success"},{"item":"atlaskit__inline-edit","response":"success"},{"item":"atlaskit__layer","response":"success"},{"item":"atlaskit__single-select","response":"success"},{"item":"atlaskit__tree","response":"success"},{"item":"atlassian-crowd-client","response":"success"},{"item":"atmosphere.js","response":"success"},{"item":"atob","response":"success"},{"item":"atob-lite","response":"success"},{"item":"atom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"atom-keymap","response":"success"},{"item":"atom-mocha-test-runner","response":"success"},{"item":"atpl","response":"success"},{"item":"audio-context","response":"success"},{"item":"audio-play","response":"success"},{"item":"audiobuffer-to-wav","response":"success"},{"item":"audiosprite","response":"success"},{"item":"auth-header","response":"success"},{"item":"auth0","response":"success"},{"item":"auth0-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"auth0-js","response":"success"},{"item":"auth0-lock","response":"success"},{"item":"auth0.widget","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"authenticator","response":"success"},{"item":"auto-launch","response":"success"},{"item":"auto-sni","response":"success"},{"item":"autobahn","response":"success"},{"item":"autocannon","response":"success"},{"item":"autoprefixer","response":"success"},{"item":"autoprefixer-core","response":"success"},{"item":"autosize","response":"success"},{"item":"autosuggest-highlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/autosuggest-highlight"},{"item":"avoscloud-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"await-timeout","response":"success"},{"item":"awesomplete","response":"success"},{"item":"aws-iot-device-sdk","response":"success"},{"item":"aws-lambda","response":"success"},{"item":"aws-param-store","response":"success"},{"item":"aws-regions","response":"success"},{"item":"aws-serverless-express","response":"success"},{"item":"aws4","response":"success"},{"item":"axe-webdriverjs","response":"success"},{"item":"axel","response":"success"},{"item":"axios-cancel","response":"success"},{"item":"axios-case-converter","response":"success"},{"item":"axios-curlirize","response":"success"},{"item":"axios-token-interceptor","response":"success"},{"item":"axon","response":"success"},{"item":"azdata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-kusto-data","response":"success"},{"item":"azure-mobile-services-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-sb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"b-spline","response":"success"},{"item":"b2a","response":"success"},{"item":"b64-lite","response":"success"},{"item":"b_","response":"success"},{"item":"babel-code-frame","response":"success"},{"item":"babel-core","response":"success"},{"item":"babel-generator","response":"success"},{"item":"babel-plugin-macros","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-plugin-react-pug","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/babel-plugin-react-pug"},{"item":"babel-plugin-syntax-jsx","response":"success"},{"item":"babel-template","response":"success"},{"item":"babel-traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-types","response":"success"},{"item":"babel-webpack-plugin","response":"success"},{"item":"babel__code-frame","response":"success"},{"item":"babel__core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel__generator","response":"success"},{"item":"babel__standalone","response":"success"},{"item":"babel__template","response":"success"},{"item":"babel__traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babelify","response":"success"},{"item":"babylon","response":"success"},{"item":"babylon-walk","response":"success"},{"item":"babyparse","response":"success"},{"item":"backbone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"backbone-associations","response":"success"},{"item":"backbone-fetch-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone-relational","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.layoutmanager","response":"success"},{"item":"backbone.localstorage","response":"success"},{"item":"backbone.marionette","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.paginator","response":"success"},{"item":"backbone.radio","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backlog-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"backo2","response":"success"},{"item":"backoff","response":"success"},{"item":"backstopjs","response":"success"},{"item":"bagpipes","response":"success"},{"item":"baidu-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"baidumap-web-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/baidumap-web-sdk"},{"item":"balanced-match","response":"success"},{"item":"bandagedbd__bdapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"barbellweights","response":"success"},{"item":"barcode","response":"success"},{"item":"bardjs","response":"success"},{"item":"base-64","response":"success"},{"item":"base16","response":"success"},{"item":"base64-arraybuffer","response":"success"},{"item":"base64-async","response":"success"},{"item":"base64-js","response":"success"},{"item":"base64-stream","response":"success"},{"item":"base64-url","response":"success"},{"item":"base64topdf","response":"success"},{"item":"bases","response":"success"},{"item":"bash-glob","response":"success"},{"item":"basic-auth","response":"success"},{"item":"basicauth-middleware","response":"success"},{"item":"basiclightbox","response":"success"},{"item":"batch-stream","response":"success"},{"item":"battery-level","response":"success"},{"item":"bayes-classifier","response":"success"},{"item":"bazinga-translator","response":"success"},{"item":"bchaddrjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bcp-47","response":"success"},{"item":"bcp-47-match","response":"success"},{"item":"bcrypt","response":"success"},{"item":"bcrypt-nodejs","response":"success"},{"item":"bcryptjs","response":"success"},{"item":"bdfjs","response":"success"},{"item":"beanstalkd","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"beanstalkd-worker","response":"success"},{"item":"bearcat-es6","response":"success"},{"item":"beats","response":"success"},{"item":"bech32","response":"success"},{"item":"behavior3","response":"success"},{"item":"bell","response":"success"},{"item":"benchmark","response":"success"},{"item":"bencode","response":"success"},{"item":"bent","response":"success"},{"item":"better-curry","response":"success"},{"item":"better-queue","response":"success"},{"item":"better-scroll","response":"success"},{"item":"better-sqlite3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"bezier-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"bgiframe","response":"success"},{"item":"bidirectional-map","response":"success"},{"item":"big.js","response":"success"},{"item":"bigi","response":"success"},{"item":"bigint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/bigint/index.d.ts(9,19): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(21,11): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(57,13): error TS2300: Duplicate identifier 'BigInt'.\n"},{"item":"bignum","response":"success"},{"item":"bigscreen","response":"success"},{"item":"bin-pack","response":"success"},{"item":"binary-parse-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"binary-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"binaryextensions","response":"success"},{"item":"bind-ponyfill","response":"success"},{"item":"bindings","response":"success"},{"item":"bintrees","response":"success"},{"item":"bip21","response":"success"},{"item":"bip38","response":"success"},{"item":"bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"bit-twiddle","response":"success"},{"item":"bitcore-lib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bittorrent-protocol","response":"success"},{"item":"bitwise-xor","response":"success"},{"item":"bl","response":"success"},{"item":"blacklist","response":"success"},{"item":"blake2","response":"success"},{"item":"blazor__javascript-interop","response":"success"},{"item":"blazy","response":"success"},{"item":"bleno","response":"success"},{"item":"blessed","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blip-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blissfuljs","response":"success"},{"item":"blob-stream","response":"success"},{"item":"blob-to-buffer","response":"success"},{"item":"blocked","response":"success"},{"item":"blockies","response":"success"},{"item":"blocks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"bloem","response":"success"},{"item":"bloom-filter","response":"success"},{"item":"bloomfilter","response":"success"},{"item":"blue-tape","response":"success"},{"item":"bluebird","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"bluebird-global","response":"success"},{"item":"bluebird-retry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"blueimp-load-image","response":"success"},{"item":"blueimp-md5","response":"success"},{"item":"bmp-js","response":"success"},{"item":"bn.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"body-parser","response":"success"},{"item":"body-parser-xml","response":"success"},{"item":"body-scroll-lock","response":"success"},{"item":"bonjour","response":"success"},{"item":"bookshelf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"boolify-string","response":"success"},{"item":"boom","response":"success"},{"item":"bootbox","response":"success"},{"item":"bootpag","response":"success"},{"item":"bootstrap","response":"success"},{"item":"bootstrap-3-typeahead","response":"success"},{"item":"bootstrap-colorpicker","response":"success"},{"item":"bootstrap-datepicker","response":"success"},{"item":"bootstrap-fileinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"bootstrap-growl-ifightcrime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-maxlength","response":"success"},{"item":"bootstrap-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"bootstrap-notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-select","response":"success"},{"item":"bootstrap-slider","response":"success"},{"item":"bootstrap-switch","response":"success"},{"item":"bootstrap-toggle","response":"success"},{"item":"bootstrap-touchspin","response":"success"},{"item":"bootstrap-treeview","response":"success"},{"item":"bootstrap-validator","response":"success"},{"item":"bootstrap.paginator","response":"success"},{"item":"bootstrap.timepicker","response":"success"},{"item":"bootstrap.v3.datetimepicker","response":"success"},{"item":"bootstrap3-dialog","response":"success"},{"item":"bounce.js","response":"success"},{"item":"box-intersect","response":"success"},{"item":"box2d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bpmn-moddle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"brace-expansion","response":"success"},{"item":"braces","response":"success"},{"item":"brainhubeu__react-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"braintree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"braintree-web","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"braintree-web-drop-in","response":"success"},{"item":"breeze","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bresenham","response":"success"},{"item":"bricks.js","response":"success"},{"item":"bristol","response":"success"},{"item":"bristol-sentry","response":"success"},{"item":"bro-fs","response":"success"},{"item":"brorand","response":"success"},{"item":"brotli-webpack-plugin","response":"success"},{"item":"browser-bunyan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"browser-fingerprint","response":"success"},{"item":"browser-harness","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'kind' of undefined\n"},{"item":"browser-image-compression","response":"success"},{"item":"browser-or-node","response":"success"},{"item":"browser-pack","response":"success"},{"item":"browser-report","response":"success"},{"item":"browser-resolve","response":"success"},{"item":"browser-sync","response":"success"},{"item":"browser-sync-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"browserify","response":"success"},{"item":"browserslist","response":"success"},{"item":"browserslist-useragent","response":"success"},{"item":"bs58","response":"success"},{"item":"bser","response":"success"},{"item":"bson","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"btoa","response":"success"},{"item":"btoa-lite","response":"success"},{"item":"buble","response":"success"},{"item":"bucks","response":"success"},{"item":"buffer-compare","response":"success"},{"item":"buffer-crc32","response":"success"},{"item":"buffer-equal","response":"success"},{"item":"buffer-from","response":"success"},{"item":"buffer-reader","response":"success"},{"item":"buffer-split","response":"success"},{"item":"buffer-xor","response":"success"},{"item":"bufferhelper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"buffers","response":"success"},{"item":"bufferstream","response":"success"},{"item":"build-output-script","response":"success"},{"item":"bull","response":"success"},{"item":"bull-arena","response":"success"},{"item":"bull-board","response":"success"},{"item":"bulma-calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"bump-regex","response":"success"},{"item":"bunnymq","response":"success"},{"item":"bunyan","response":"success"},{"item":"bunyan-blackhole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"bunyan-config","response":"success"},{"item":"bunyan-format","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"bunyan-logentries","response":"success"},{"item":"bunyan-prettystream","response":"success"},{"item":"bunyan-seq","response":"success"},{"item":"bunyan-winston-adapter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"burns","response":"success"},{"item":"busboy","response":"success"},{"item":"business-rules-engine","response":"success"},{"item":"bwip-js","response":"success"},{"item":"byline","response":"success"},{"item":"byte-range","response":"success"},{"item":"bytebuffer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"bytes","response":"success"},{"item":"bytewise","response":"success"},{"item":"c3","response":"success"},{"item":"cacache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cache-manager","response":"success"},{"item":"cacheable-request","response":"success"},{"item":"cached-path-relative","response":"success"},{"item":"cadesplugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"cal-heatmap","response":"success"},{"item":"calendar","response":"success"},{"item":"calidation","response":"success"},{"item":"callback-to-async-iterator","response":"success"},{"item":"caller","response":"success"},{"item":"callsite","response":"success"},{"item":"calq","response":"success"},{"item":"camelcase-keys-deep","response":"success"},{"item":"camo","response":"success"},{"item":"camunda-external-task-client-js","response":"success"},{"item":"cancan","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"caniuse-api","response":"success"},{"item":"caniuse-lite","response":"success"},{"item":"cannon","response":"success"},{"item":"canvas-confetti","response":"success"},{"item":"canvas-gauges","response":"success"},{"item":"canvasjs","response":"success"},{"item":"canvaskit-wasm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"capitalize","response":"success"},{"item":"capture-console","response":"success"},{"item":"carbon-components-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"carbon__colors","response":"success"},{"item":"carbon__icon-helpers","response":"success"},{"item":"carbon__icons-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__layout","response":"success"},{"item":"carbon__motion","response":"success"},{"item":"carbon__pictograms-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__themes","response":"success"},{"item":"carbon__type","response":"success"},{"item":"carbone","response":"success"},{"item":"card-validator","response":"success"},{"item":"carlo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"case-sensitive-paths-webpack-plugin","response":"success"},{"item":"caseless","response":"success"},{"item":"cash","response":"success"},{"item":"cashaddrjs","response":"success"},{"item":"casperjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"cassandra-store","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"cassanknex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"catbox-memory","response":"success"},{"item":"catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"cavy","response":"success"},{"item":"cbor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ccap","response":"success"},{"item":"ccapture.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"center-align","response":"success"},{"item":"centra","response":"success"},{"item":"cesium","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cfenv","response":"success"},{"item":"cfn-response","response":"success"},{"item":"chai","response":"success"},{"item":"chai-almost","response":"success"},{"item":"chai-arrays","response":"success"},{"item":"chai-as-promised","response":"success"},{"item":"chai-datetime","response":"success"},{"item":"chai-dom","response":"success"},{"item":"chai-enzyme","response":"success"},{"item":"chai-fs","response":"success"},{"item":"chai-fuzzy","response":"success"},{"item":"chai-jest-snapshot","response":"success"},{"item":"chai-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"chai-json-schema","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"chai-like","response":"success"},{"item":"chai-moment","response":"success"},{"item":"chai-oequal","response":"success"},{"item":"chai-roughly","response":"success"},{"item":"chai-spies","response":"success"},{"item":"chai-string","response":"success"},{"item":"chai-style","response":"success"},{"item":"chai-subset","response":"success"},{"item":"chai-things","response":"success"},{"item":"chai-uuid","response":"success"},{"item":"chai-xml","response":"success"},{"item":"chalk-animation","response":"success"},{"item":"chalk-pipe","response":"success"},{"item":"chance","response":"success"},{"item":"change-case-object","response":"success"},{"item":"change-emitter","response":"success"},{"item":"changelog-parser","response":"success"},{"item":"chardet","response":"success"},{"item":"charm","response":"success"},{"item":"charset","response":"success"},{"item":"chart.js","response":"success"},{"item":"chartist","response":"success"},{"item":"chartmogul-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chayns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"check-error","response":"success"},{"item":"check-sum","response":"success"},{"item":"check-types","response":"success"},{"item":"checkstyle-formatter","response":"success"},{"item":"checksum","response":"success"},{"item":"cheerio","response":"success"},{"item":"chess.js","response":"success"},{"item":"chessboardjs","response":"success"},{"item":"child-process-promise","response":"success"},{"item":"chmodr","response":"success"},{"item":"chocolatechipjs","response":"success"},{"item":"chordsheetjs","response":"success"},{"item":"chosen-js","response":"success"},{"item":"chownr","response":"success"},{"item":"chroma-js","response":"success"},{"item":"chrome","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"chrome-apps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromecast-caf-receiver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"chromecast-caf-sender","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromedriver","response":"success"},{"item":"chui","response":"success"},{"item":"chunk","response":"success"},{"item":"chunk-text","response":"success"},{"item":"ci-info","response":"success"},{"item":"cipher-base","response":"success"},{"item":"circuit-breaker-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"circular-dependency-plugin","response":"success"},{"item":"circular-json","response":"success"},{"item":"ckeditor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clamp","response":"success"},{"item":"clamp-js","response":"success"},{"item":"clamp-js-main","response":"success"},{"item":"clarinet","response":"success"},{"item":"classnames","response":"success"},{"item":"cldrjs","response":"success"},{"item":"clean-css","response":"success"},{"item":"clean-git-ref","response":"success"},{"item":"clean-regexp","response":"success"},{"item":"clear","response":"success"},{"item":"clearbladejs-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"clearbladejs-node","response":"success"},{"item":"clearbladejs-server","response":"success"},{"item":"cleave.js","response":"success"},{"item":"cli","response":"success"},{"item":"cli-box","response":"success"},{"item":"cli-color","response":"success"},{"item":"cli-interact","response":"success"},{"item":"cli-progress","response":"success"},{"item":"cli-spinner","response":"success"},{"item":"cli-spinners","response":"success"},{"item":"cli-table","response":"success"},{"item":"cli-table2","response":"success"},{"item":"client-sessions","response":"success"},{"item":"clientjs","response":"success"},{"item":"cliff","response":"success"},{"item":"clipboard","response":"success"},{"item":"clipboard-js","response":"success"},{"item":"clmtrackr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clndr","response":"success"},{"item":"clockpicker","response":"success"},{"item":"clone","response":"success"},{"item":"clone-deep","response":"success"},{"item":"cloneable-readable","response":"success"},{"item":"cloner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"closure-compiler","response":"success"},{"item":"cloud-config-client","response":"success"},{"item":"cloud-env","response":"success"},{"item":"cloudflare-apps","response":"success"},{"item":"clovelced-plugin-audiomanagement","response":"success"},{"item":"clownface","response":"success"},{"item":"cls-hooked","response":"success"},{"item":"clui","response":"success"},{"item":"clusterize.js","response":"success"},{"item":"cmd-shim","response":"success"},{"item":"cnpj","response":"success"},{"item":"co","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"co-body","response":"success"},{"item":"co-views","response":"success"},{"item":"code","response":"success"},{"item":"codeflask","response":"success"},{"item":"codegen.macro","response":"success"},{"item":"codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"codependency","response":"success"},{"item":"coffeeify","response":"success"},{"item":"coinbase","response":"success"},{"item":"coinbase-commerce-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"coinlist","response":"success"},{"item":"coinstring","response":"success"},{"item":"collections","response":"success"},{"item":"collectionsjs","response":"success"},{"item":"color","response":"success"},{"item":"color-check","response":"success"},{"item":"color-convert","response":"success"},{"item":"color-diff","response":"success"},{"item":"color-hash","response":"success"},{"item":"color-name","response":"success"},{"item":"color-namer","response":"success"},{"item":"color-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"color-support","response":"success"},{"item":"colorbrewer","response":"success"},{"item":"colornames","response":"success"},{"item":"colresizable","response":"success"},{"item":"columnify","response":"success"},{"item":"com.darktalker.cordova.screenshot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"com.wikitude.phonegap.wikitudeplugin","response":"success"},{"item":"combinations","response":"success"},{"item":"combine-reducers","response":"success"},{"item":"combine-source-map","response":"success"},{"item":"combined-stream","response":"success"},{"item":"combokeys","response":"success"},{"item":"cometd","response":"success"},{"item":"command-exists","response":"success"},{"item":"command-line-args","response":"success"},{"item":"command-line-commands","response":"success"},{"item":"command-line-usage","response":"success"},{"item":"commander-remaining-args","response":"success"},{"item":"commangular","response":"success"},{"item":"comment-json","response":"success"},{"item":"commercetools__enzyme-extensions","response":"success"},{"item":"commitlint__load","response":"success"},{"item":"common-errors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"common-prefix","response":"success"},{"item":"common-tags","response":"success"},{"item":"commondir","response":"success"},{"item":"commonmark","response":"success"},{"item":"compare-func","response":"success"},{"item":"compare-function","response":"success"},{"item":"compare-version","response":"success"},{"item":"compass-vertical-rhythm","response":"success"},{"item":"complex","response":"success"},{"item":"complex.js","response":"success"},{"item":"component-emitter","response":"success"},{"item":"compose-function","response":"success"},{"item":"compress.js","response":"success"},{"item":"compressible","response":"success"},{"item":"compression","response":"success"},{"item":"compression-webpack-plugin","response":"success"},{"item":"compute-argmax","response":"success"},{"item":"compute-quantile","response":"success"},{"item":"compute-stdev","response":"success"},{"item":"concat-map","response":"success"},{"item":"concat-stream","response":"success"},{"item":"concaveman","response":"success"},{"item":"concurrently","response":"success"},{"item":"conditional","response":"success"},{"item":"conductor-animate","response":"success"},{"item":"confidence","response":"success"},{"item":"config","response":"success"},{"item":"config-yaml","response":"success"},{"item":"configs-overload","response":"success"},{"item":"configstore","response":"success"},{"item":"configurable","response":"success"},{"item":"confit","response":"success"},{"item":"connect","response":"success"},{"item":"connect-azuretables","response":"success"},{"item":"connect-busboy","response":"success"},{"item":"connect-datadog","response":"success"},{"item":"connect-ensure-login","response":"success"},{"item":"connect-flash","response":"success"},{"item":"connect-history-api-fallback","response":"success"},{"item":"connect-history-api-fallback-exclusions","response":"success"},{"item":"connect-livereload","response":"success"},{"item":"connect-modrewrite","response":"success"},{"item":"connect-mongodb-session","response":"success"},{"item":"connect-pg-simple","response":"success"},{"item":"connect-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"connect-sequence","response":"success"},{"item":"connect-slashes","response":"success"},{"item":"connect-timeout","response":"success"},{"item":"connect-trim-body","response":"success"},{"item":"console-log-level","response":"success"},{"item":"console-stamp","response":"success"},{"item":"console-ui","response":"success"},{"item":"consolidate","response":"success"},{"item":"consul","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"consumable-stream","response":"success"},{"item":"contains-path","response":"success"},{"item":"content-disposition","response":"success"},{"item":"content-range","response":"success"},{"item":"content-type","response":"success"},{"item":"contentful-resolve-response","response":"success"},{"item":"contentstack","response":"success"},{"item":"contextjs","response":"success"},{"item":"continuation-local-storage","response":"success"},{"item":"contract-proxy-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"conventional-changelog","response":"success"},{"item":"conventional-changelog-config-spec","response":"success"},{"item":"conventional-changelog-core","response":"success"},{"item":"conventional-changelog-preset-loader","response":"success"},{"item":"conventional-changelog-writer","response":"success"},{"item":"conventional-commits-parser","response":"success"},{"item":"conventional-recommended-bump","response":"success"},{"item":"convert-layout","response":"success"},{"item":"convert-source-map","response":"success"},{"item":"convert-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"convert-units","response":"success"},{"item":"convict","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"cookie","response":"success"},{"item":"cookie-parser","response":"success"},{"item":"cookie-session","response":"success"},{"item":"cookie-signature","response":"success"},{"item":"cookie_js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"cookiejar","response":"success"},{"item":"cookies","response":"success"},{"item":"copy","response":"success"},{"item":"copy-paste","response":"success"},{"item":"copy-webpack-plugin","response":"success"},{"item":"copyfiles","response":"success"},{"item":"cordova","response":"success"},{"item":"cordova-ionic","response":"success"},{"item":"cordova-plugin-app-version","response":"success"},{"item":"cordova-plugin-background-mode","response":"success"},{"item":"cordova-plugin-badge","response":"success"},{"item":"cordova-plugin-ble-central","response":"success"},{"item":"cordova-plugin-bluetoothclassic-serial","response":"success"},{"item":"cordova-plugin-canvascamera","response":"success"},{"item":"cordova-plugin-device-name","response":"success"},{"item":"cordova-plugin-email-composer","response":"success"},{"item":"cordova-plugin-file-opener2","response":"success"},{"item":"cordova-plugin-ibeacon","response":"success"},{"item":"cordova-plugin-insomnia","response":"success"},{"item":"cordova-plugin-keyboard","response":"success"},{"item":"cordova-plugin-mapsforge","response":"success"},{"item":"cordova-plugin-ms-adal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cordova-plugin-native-keyboard","response":"success"},{"item":"cordova-plugin-ouralabs","response":"success"},{"item":"cordova-plugin-qrscanner","response":"success"},{"item":"cordova-plugin-spinner","response":"success"},{"item":"cordova-plugin-websql","response":"success"},{"item":"cordova-sqlite-storage","response":"success"},{"item":"cordova-universal-links-plugin","response":"success"},{"item":"cordova_app_version_plugin","response":"success"},{"item":"cordovarduino","response":"success"},{"item":"core-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"core-object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"correlation-id","response":"success"},{"item":"cors","response":"success"},{"item":"cote","response":"success"},{"item":"couchbase","response":"success"},{"item":"countdown","response":"success"},{"item":"counterpart","response":"success"},{"item":"countries-and-timezones","response":"success"},{"item":"country-data","response":"success"},{"item":"country-list","response":"success"},{"item":"country-select-js","response":"success"},{"item":"coverup","response":"success"},{"item":"cpx","response":"success"},{"item":"cqrs-domain","response":"success"},{"item":"cradle","response":"success"},{"item":"crc","response":"success"},{"item":"create-error","response":"success"},{"item":"create-hash","response":"success"},{"item":"create-hmac","response":"success"},{"item":"create-react-class","response":"success"},{"item":"create-subscription","response":"success"},{"item":"create-xpub","response":"success"},{"item":"createjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/createjs"},{"item":"createjs-lib","response":"success"},{"item":"credential","response":"success"},{"item":"credit-card-type","response":"success"},{"item":"critters-webpack-plugin","response":"success"},{"item":"cron","response":"success"},{"item":"cron-converter","response":"success"},{"item":"croppie","response":"success"},{"item":"cross-spawn","response":"success"},{"item":"cross-storage","response":"success"},{"item":"crossfilter","response":"success"},{"item":"crossroads","response":"success"},{"item":"crpc","response":"success"},{"item":"crumb","response":"success"},{"item":"cryptex","response":"success"},{"item":"cryptiles","response":"success"},{"item":"crypto-js","response":"success"},{"item":"cryptojs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cryptr","response":"success"},{"item":"cson","response":"success"},{"item":"csp-html-webpack-plugin","response":"success"},{"item":"csprng","response":"success"},{"item":"csrf","response":"success"},{"item":"css","response":"success"},{"item":"css-font-loading-module","response":"success"},{"item":"css-mediaquery","response":"success"},{"item":"css-modules","response":"success"},{"item":"css-modules-loader-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"css-modules-require-hook","response":"success"},{"item":"css-selector-tokenizer","response":"success"},{"item":"css-to-style","response":"success"},{"item":"css-tree","response":"success"},{"item":"cssbeautify","response":"success"},{"item":"cssesc","response":"success"},{"item":"cssnano","response":"success"},{"item":"csso","response":"success"},{"item":"csurf","response":"success"},{"item":"csv2json","response":"success"},{"item":"csvrow","response":"success"},{"item":"csvtojson","response":"success"},{"item":"cucumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cuid","response":"success"},{"item":"cuint","response":"success"},{"item":"currency-formatter","response":"success"},{"item":"current-git-branch","response":"success"},{"item":"cuss","response":"success"},{"item":"custom-error-generator","response":"success"},{"item":"custom-functions-runtime","response":"success"},{"item":"cwd","response":"success"},{"item":"cwise","response":"success"},{"item":"cwise-compiler","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"cwise-parser","response":"success"},{"item":"cyberblast__config","response":"success"},{"item":"cyberblast__logger","response":"success"},{"item":"cyberblast__webserver","response":"success"},{"item":"cybozulabs-md5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cypress-axe","response":"success"},{"item":"cypress-cucumber-preprocessor","response":"success"},{"item":"cypress-image-snapshot","response":"success"},{"item":"cytoscape","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d","response":"success"},{"item":"d20","response":"success"},{"item":"d3","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d3-array","response":"success"},{"item":"d3-axis","response":"success"},{"item":"d3-box","response":"success"},{"item":"d3-brush","response":"success"},{"item":"d3-chord","response":"success"},{"item":"d3-cloud","response":"success"},{"item":"d3-collection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"d3-color","response":"success"},{"item":"d3-contour","response":"success"},{"item":"d3-delaunay","response":"success"},{"item":"d3-dispatch","response":"success"},{"item":"d3-drag","response":"success"},{"item":"d3-dsv","response":"success"},{"item":"d3-ease","response":"success"},{"item":"d3-fetch","response":"success"},{"item":"d3-force","response":"success"},{"item":"d3-format","response":"success"},{"item":"d3-geo","response":"success"},{"item":"d3-graphviz","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-hexbin","response":"success"},{"item":"d3-hierarchy","response":"success"},{"item":"d3-hsv","response":"success"},{"item":"d3-interpolate","response":"success"},{"item":"d3-interpolate-path","response":"success"},{"item":"d3-path","response":"success"},{"item":"d3-polygon","response":"success"},{"item":"d3-quadtree","response":"success"},{"item":"d3-queue","response":"success"},{"item":"d3-random","response":"success"},{"item":"d3-request","response":"success"},{"item":"d3-require","response":"success"},{"item":"d3-sankey","response":"success"},{"item":"d3-scale","response":"success"},{"item":"d3-scale-chromatic","response":"success"},{"item":"d3-selection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"d3-selection-multi","response":"success"},{"item":"d3-shape","response":"success"},{"item":"d3-time","response":"success"},{"item":"d3-time-format","response":"success"},{"item":"d3-timer","response":"success"},{"item":"d3-tip","response":"success"},{"item":"d3-transition","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-voronoi","response":"success"},{"item":"d3-zoom","response":"success"},{"item":"d3.slider","response":"success"},{"item":"d3kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3pie","response":"success"},{"item":"dagre","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-d3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-layout","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dashify","response":"success"},{"item":"dat.gui","response":"success"},{"item":"data-driven","response":"success"},{"item":"datadog-metrics","response":"success"},{"item":"datadog-statsd-metrics-collector","response":"success"},{"item":"datadog-tracer","response":"success"},{"item":"datadog-winston","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"datastore-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"datastore-level","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"datatables.net","response":"success"},{"item":"datatables.net-autofill","response":"success"},{"item":"datatables.net-buttons","response":"success"},{"item":"datatables.net-colreorder","response":"success"},{"item":"datatables.net-fixedcolumns","response":"success"},{"item":"datatables.net-fixedheader","response":"success"},{"item":"datatables.net-keytable","response":"success"},{"item":"datatables.net-rowgroup","response":"success"},{"item":"datatables.net-rowreorder","response":"success"},{"item":"datatables.net-scroller","response":"success"},{"item":"datatables.net-select","response":"success"},{"item":"date-and-time","response":"success"},{"item":"date-arithmetic","response":"success"},{"item":"date-fp","response":"success"},{"item":"date-now","response":"success"},{"item":"date-range-array","response":"success"},{"item":"date-utils","response":"success"},{"item":"date.format.js","response":"success"},{"item":"dateformat","response":"success"},{"item":"datejs","response":"success"},{"item":"daterangepicker","response":"success"},{"item":"dav","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dayzed","response":"success"},{"item":"db-migrate-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db-migrate-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db.js","response":"success"},{"item":"dbus","response":"success"},{"item":"dc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"deasync","response":"success"},{"item":"death","response":"success"},{"item":"debessmann","response":"success"},{"item":"debounce","response":"success"},{"item":"debounce-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"debug","response":"success"},{"item":"decay","response":"success"},{"item":"decode-entities","response":"success"},{"item":"decode-uri-component","response":"success"},{"item":"decomment","response":"success"},{"item":"decompress","response":"success"},{"item":"decorum","response":"success"},{"item":"dedent","response":"success"},{"item":"deep-assign","response":"success"},{"item":"deep-diff","response":"success"},{"item":"deep-equal","response":"success"},{"item":"deep-equal-in-any-order","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"deep-extend","response":"success"},{"item":"deep-freeze","response":"success"},{"item":"deep-freeze-strict","response":"success"},{"item":"deezer-sdk","response":"success"},{"item":"default-gateway","response":"success"},{"item":"defaults","response":"success"},{"item":"defaults-deep","response":"success"},{"item":"defer-promise","response":"success"},{"item":"define-properties","response":"success"},{"item":"defined","response":"success"},{"item":"deglob","response":"success"},{"item":"deindent","response":"success"},{"item":"deku","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"delaunator","response":"success"},{"item":"delete-empty","response":"success"},{"item":"deline","response":"success"},{"item":"deluge","response":"success"},{"item":"denodeify","response":"success"},{"item":"deoxxa-content-type","response":"success"},{"item":"depd","response":"success"},{"item":"dependency-tree","response":"success"},{"item":"deployjava","response":"success"},{"item":"deprecate","response":"success"},{"item":"deps-sort","response":"success"},{"item":"derhuerst__cli-on-key","response":"success"},{"item":"destroy","response":"success"},{"item":"destroy-on-hwm","response":"success"},{"item":"detect-character-encoding","response":"success"},{"item":"detect-emoji-support","response":"success"},{"item":"detect-hover","response":"success"},{"item":"detect-it","response":"success"},{"item":"detect-node","response":"success"},{"item":"detect-passive-events","response":"success"},{"item":"detect-pointer","response":"success"},{"item":"detect-port","response":"success"},{"item":"detect-touch-events","response":"success"},{"item":"detective","response":"success"},{"item":"detox","response":"success"},{"item":"dev-ip","response":"success"},{"item":"devexpress-aspnetcore-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"devexpress-web","response":"success"},{"item":"dexie-batch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"df-visible","response":"success"},{"item":"dhtmlxgantt","response":"success"},{"item":"dhtmlxscheduler","response":"success"},{"item":"di","response":"success"},{"item":"di-lite","response":"success"},{"item":"diacritics","response":"success"},{"item":"dialog-polyfill","response":"success"},{"item":"dialogflow-fulfillment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n"},{"item":"dicer","response":"success"},{"item":"didyoumean","response":"success"},{"item":"diff","response":"success"},{"item":"diff-match-patch","response":"success"},{"item":"diff2html","response":"success"},{"item":"diffie-hellman","response":"success"},{"item":"difflib","response":"success"},{"item":"digibyte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dinero.js","response":"success"},{"item":"dingtalk-robot-sender","response":"success"},{"item":"dir-glob","response":"success"},{"item":"dir-resolve","response":"success"},{"item":"dir-walker-gen","response":"success"},{"item":"direction","response":"success"},{"item":"dirname-regex","response":"success"},{"item":"dirty-chai","response":"success"},{"item":"discontinuous-range","response":"success"},{"item":"discord-rpc","response":"success"},{"item":"discourse-sso","response":"success"},{"item":"dispatchr","response":"success"},{"item":"disposable-email-domains","response":"success"},{"item":"distributions","response":"success"},{"item":"distributions-poisson-quantile","response":"success"},{"item":"diva.js","response":"success"},{"item":"djv","response":"success"},{"item":"dkim-signer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dlv","response":"success"},{"item":"dnssd","response":"success"},{"item":"doccookies","response":"success"},{"item":"dock-spawn","response":"success"},{"item":"docker-events","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"dockerode","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"docopt","response":"success"},{"item":"doctrine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"document-ready","response":"success"},{"item":"documentdb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"documentdb-server","response":"success"},{"item":"documentdb-session","response":"success"},{"item":"docx-templates","response":"success"},{"item":"dogapi","response":"success"},{"item":"doge-seed","response":"success"},{"item":"dojo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dom-clipboard-api","response":"success"},{"item":"dom-inputevent","response":"success"},{"item":"dom-matches","response":"success"},{"item":"dom-mediacapture-record","response":"success"},{"item":"dom-parser","response":"success"},{"item":"dom-to-image","response":"success"},{"item":"dom4","response":"success"},{"item":"domexception","response":"success"},{"item":"domhandler","response":"success"},{"item":"domo","response":"success"},{"item":"dompurify","response":"success"},{"item":"domready","response":"success"},{"item":"domtagger","response":"success"},{"item":"domurl","response":"success"},{"item":"domutils","response":"success"},{"item":"donna","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dookie","response":"success"},{"item":"dos2unix","response":"success"},{"item":"dot","response":"success"},{"item":"dot-object","response":"success"},{"item":"dot-prop-immutable","response":"success"},{"item":"dotdir-regex","response":"success"},{"item":"dotdotdot","response":"success"},{"item":"dotenv-flow","response":"success"},{"item":"dotenv-parse-variables","response":"success"},{"item":"dotenv-safe","response":"success"},{"item":"dotenv-webpack","response":"success"},{"item":"dotfile-regex","response":"success"},{"item":"dottie","response":"success"},{"item":"double-ended-queue","response":"success"},{"item":"doublearray","response":"success"},{"item":"doubleclick-gpt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"download","response":"success"},{"item":"downloadjs","response":"success"},{"item":"downscale","response":"success"},{"item":"dplayer","response":"success"},{"item":"draft-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draft-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draftjs-to-html","response":"success"},{"item":"drag-timetable","response":"success"},{"item":"draggabilly","response":"success"},{"item":"dragscroll","response":"success"},{"item":"dragselect","response":"success"},{"item":"dragster","response":"success"},{"item":"dragula","response":"success"},{"item":"driftless","response":"success"},{"item":"drivelist","response":"success"},{"item":"dropbox-chooser","response":"success"},{"item":"dropboxjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dropkickjs","response":"success"},{"item":"dropzone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ds18b20","response":"success"},{"item":"dsv","response":"success"},{"item":"dts-bundle","response":"success"},{"item":"dts-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"du","response":"success"},{"item":"duckduckgo-images-api","response":"success"},{"item":"duo_web_sdk","response":"success"},{"item":"duosecurity__duo_web","response":"success"},{"item":"duplexer2","response":"success"},{"item":"duplexer3","response":"success"},{"item":"duplexify","response":"success"},{"item":"duplicate-package-checker-webpack-plugin","response":"success"},{"item":"durandal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dush","response":"success"},{"item":"dustjs-linkedin","response":"success"},{"item":"dv","response":"success"},{"item":"dvtng-jss","response":"success"},{"item":"dw-bxslider-4","response":"success"},{"item":"dwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"dygraphs","response":"success"},{"item":"dymo-label-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dynamic-time-warping","response":"success"},{"item":"dynamodb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"dynatable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dynatrace","response":"success"},{"item":"dynogels","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"each","response":"success"},{"item":"earcut","response":"success"},{"item":"easeljs","response":"success"},{"item":"eases","response":"success"},{"item":"easy-api-request","response":"success"},{"item":"easy-jsend","response":"success"},{"item":"easy-rbac","response":"success"},{"item":"easy-session","response":"success"},{"item":"easy-table","response":"success"},{"item":"easy-xapi","response":"success"},{"item":"easy-xapi-utils","response":"success"},{"item":"easydate","response":"success"},{"item":"ebml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ebongarde-root","response":"success"},{"item":"eccrypto","response":"success"},{"item":"echarts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ecma-proposal-math-extensions","response":"success"},{"item":"ecore","response":"success"},{"item":"ecurve","response":"success"},{"item":"ed25519","response":"success"},{"item":"ed2curve","response":"success"},{"item":"edmonds-blossom","response":"success"},{"item":"edtr-io__mathquill","response":"success"},{"item":"ee-first","response":"success"},{"item":"egg-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"egg.js","response":"success"},{"item":"egjs__axes","response":"success"},{"item":"egjs__component","response":"success"},{"item":"ej.web.all","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"ejs","response":"success"},{"item":"ejs-locals","response":"success"},{"item":"ejson","response":"success"},{"item":"elastic.js","response":"success"},{"item":"elasticlunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"elasticsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"electron-clipboard-extended","response":"success"},{"item":"electron-devtools-installer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"electron-json-storage","response":"success"},{"item":"electron-load-devtool","response":"success"},{"item":"electron-localshortcut","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-notifications","response":"success"},{"item":"electron-notify","response":"success"},{"item":"electron-packager","response":"success"},{"item":"electron-prompt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-settings","response":"success"},{"item":"electron-spellchecker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-window-state","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"element-closest","response":"success"},{"item":"element-resize-detector","response":"success"},{"item":"element-resize-event","response":"success"},{"item":"elementtree","response":"success"},{"item":"elgamal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"elliptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"elm","response":"success"},{"item":"elo-rank","response":"success"},{"item":"elv","response":"success"},{"item":"email-templates","response":"success"},{"item":"ember","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data__adapter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__model","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__serializer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-data__store","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-feature-flags","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-modal-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-resolver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-testing-helpers","response":"success"},{"item":"ember__application","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember__controller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__debug","response":"success"},{"item":"ember__engine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__error","response":"success"},{"item":"ember__object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__ordered-set","response":"success"},{"item":"ember__polyfills","response":"success"},{"item":"ember__routing","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__runloop","response":"success"},{"item":"ember__service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__string","response":"success"},{"item":"ember__template","response":"success"},{"item":"ember__test","response":"success"},{"item":"ember__test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"emissary","response":"success"},{"item":"emoji-flags","response":"success"},{"item":"emoji-js","response":"success"},{"item":"emoji-mart","response":"success"},{"item":"emoji-regex","response":"success"},{"item":"emoji-strip","response":"success"},{"item":"emojione","response":"success"},{"item":"empower","response":"success"},{"item":"empty-dir","response":"success"},{"item":"emscripten","response":"success"},{"item":"encodeurl","response":"success"},{"item":"encoding-down","response":"success"},{"item":"encoding-japanese","response":"success"},{"item":"end-of-stream","response":"success"},{"item":"engine-check","response":"success"},{"item":"engine.io","response":"success"},{"item":"engine.io-client","response":"success"},{"item":"enhanced-resolve","response":"success"},{"item":"enigma.js","response":"success"},{"item":"enquire.js","response":"success"},{"item":"ensure-posix-path","response":"success"},{"item":"ent","response":"success"},{"item":"entities","response":"success"},{"item":"entria__relay-experimental","response":"success"},{"item":"env-ci","response":"success"},{"item":"env-to-object","response":"success"},{"item":"envify","response":"success"},{"item":"enzyme","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-adapter-react-15","response":"success"},{"item":"enzyme-adapter-react-15.4","response":"success"},{"item":"enzyme-adapter-react-16","response":"success"},{"item":"enzyme-async-helpers","response":"success"},{"item":"enzyme-react-intl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-to-json","response":"success"},{"item":"eonasdan-bootstrap-datetimepicker","response":"success"},{"item":"epiceditor","response":"success"},{"item":"epilogue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"epub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"eq.js","response":"success"},{"item":"error-subclass","response":"success"},{"item":"errorhandler","response":"success"},{"item":"es-feature-detection","response":"success"},{"item":"es-module-lexer","response":"success"},{"item":"es-to-primitive","response":"success"},{"item":"es6-collections","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/es6-collections/index.d.ts(22,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(47,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(53,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(67,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(73,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakMap', but here has type 'WeakMap'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(102,24): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(103,48): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakSet', but here has type 'WeakSet'.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(28,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(34,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(54,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(64,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(69,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(87,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\n"},{"item":"es6-promisify","response":"success"},{"item":"es6-set-proptypes","response":"success"},{"item":"es6-shim","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'statements' of undefined\n"},{"item":"es6-weak-map","response":"success"},{"item":"esc-pos-encoder","response":"success"},{"item":"escape-html","response":"success"},{"item":"escape-latex","response":"success"},{"item":"escape-regexp","response":"success"},{"item":"escodegen","response":"success"},{"item":"escpos","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint-plugin-prettier","response":"success"},{"item":"eslint-scope","response":"success"},{"item":"eslint-visitor-keys","response":"success"},{"item":"esm","response":"success"},{"item":"esprima","response":"success"},{"item":"esprima-walk","response":"success"},{"item":"espruino","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'global' must be of type 'any', but here has type 'Global'.\n"},{"item":"esquery","response":"success"},{"item":"esrever","response":"success"},{"item":"esri-leaflet","response":"success"},{"item":"esri-leaflet-geocoder","response":"success"},{"item":"estimate","response":"success"},{"item":"estraverse","response":"success"},{"item":"estree","response":"success"},{"item":"estree-jsx","response":"success"},{"item":"etag","response":"success"},{"item":"eth-lightwallet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eth-sig-util","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ethereum-protocol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"ethereumjs-abi","response":"success"},{"item":"ethjs-signer","response":"success"},{"item":"eureka-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"evaporate","response":"success"},{"item":"event-emitter","response":"success"},{"item":"event-emitter-es6","response":"success"},{"item":"event-hooks-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"event-kit","response":"success"},{"item":"event-loop-lag","response":"success"},{"item":"event-stream","response":"success"},{"item":"event-to-promise","response":"success"},{"item":"events","response":"success"},{"item":"events.once","response":"success"},{"item":"eventsource","response":"success"},{"item":"evernote","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"excel-style-dataformatter","response":"success"},{"item":"exenv","response":"success"},{"item":"exif","response":"success"},{"item":"exit","response":"success"},{"item":"exorcist","response":"success"},{"item":"expand-tilde","response":"success"},{"item":"expect-puppeteer","response":"success"},{"item":"expect.js","response":"success"},{"item":"expectations","response":"success"},{"item":"expired","response":"success"},{"item":"expired-storage","response":"success"},{"item":"expirymanager","response":"success"},{"item":"expo-mixpanel-analytics","response":"success"},{"item":"expo__status-bar-height","response":"success"},{"item":"expo__vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"express","response":"success"},{"item":"express-actuator","response":"success"},{"item":"express-async-wrap","response":"success"},{"item":"express-boom","response":"success"},{"item":"express-brute","response":"success"},{"item":"express-brute-memcached","response":"success"},{"item":"express-brute-mongo","response":"success"},{"item":"express-brute-redis","response":"success"},{"item":"express-bunyan-logger","response":"success"},{"item":"express-busboy","response":"success"},{"item":"express-cluster","response":"success"},{"item":"express-correlation-id","response":"success"},{"item":"express-debug","response":"success"},{"item":"express-domain-middleware","response":"success"},{"item":"express-ejs-layouts","response":"success"},{"item":"express-enforces-ssl","response":"success"},{"item":"express-fileupload","response":"success"},{"item":"express-flash","response":"success"},{"item":"express-flash-2","response":"success"},{"item":"express-flash-notification","response":"success"},{"item":"express-form-data","response":"success"},{"item":"express-formidable","response":"success"},{"item":"express-handlebars","response":"success"},{"item":"express-http-proxy","response":"success"},{"item":"express-jsonschema","response":"success"},{"item":"express-jwt","response":"success"},{"item":"express-less","response":"success"},{"item":"express-list-endpoints","response":"success"},{"item":"express-minify","response":"success"},{"item":"express-mongo-sanitize","response":"success"},{"item":"express-mung","response":"success"},{"item":"express-myconnection","response":"success"},{"item":"express-mysql-session","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-pino-logger","response":"success"},{"item":"express-rate-limit","response":"success"},{"item":"express-redis-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"express-request-id","response":"success"},{"item":"express-route-fs","response":"success"},{"item":"express-routemap","response":"success"},{"item":"express-routes-versioning","response":"success"},{"item":"express-sanitized","response":"success"},{"item":"express-serve-static-core","response":"success"},{"item":"express-session","response":"success"},{"item":"express-sitemap-xml","response":"success"},{"item":"express-slow-down","response":"success"},{"item":"express-socket.io-session","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/express-socket.io-session/index.d.ts(12,27): error TS2694: Namespace 'global.Express' has no exported member 'Session'.\n"},{"item":"express-sslify","response":"success"},{"item":"express-status-monitor","response":"success"},{"item":"express-to-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-unless","response":"success"},{"item":"express-urlrewrite","response":"success"},{"item":"express-useragent","response":"success"},{"item":"express-version-request","response":"success"},{"item":"express-version-route","response":"success"},{"item":"express-wechat-access","response":"success"},{"item":"express-ws","response":"success"},{"item":"express-ws-routes","response":"success"},{"item":"express-xml-bodyparser","response":"success"},{"item":"extend","response":"success"},{"item":"extjs","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"extra-watch-webpack-plugin","response":"success"},{"item":"extract-files","response":"success"},{"item":"extract-text-webpack-plugin","response":"success"},{"item":"extract-zip","response":"success"},{"item":"extsprintf","response":"success"},{"item":"eyes","response":"success"},{"item":"ez-plus","response":"success"},{"item":"f1","response":"success"},{"item":"fabric","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"facebook-instant-games","response":"success"},{"item":"facebook-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"facebook-locales","response":"success"},{"item":"facebook-pixel","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"facepaint","response":"success"},{"item":"factory-girl","response":"success"},{"item":"faker","response":"success"},{"item":"falafel","response":"success"},{"item":"falcor","response":"success"},{"item":"falcor-express","response":"success"},{"item":"falcor-http-datasource","response":"success"},{"item":"falcor-json-graph","response":"success"},{"item":"falcor-router","response":"success"},{"item":"famous","response":"success"},{"item":"fancy-log","response":"success"},{"item":"fancybox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"farbtastic","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"fast-chunk-string","response":"success"},{"item":"fast-html-parser","response":"success"},{"item":"fast-json-stable-stringify","response":"success"},{"item":"fast-levenshtein","response":"success"},{"item":"fast-list","response":"success"},{"item":"fast-memory-cache","response":"success"},{"item":"fast-ratelimit","response":"success"},{"item":"fast-shuffle","response":"success"},{"item":"fast-stats","response":"success"},{"item":"fast-text-encoding","response":"success"},{"item":"fast64","response":"success"},{"item":"fastbitset","response":"success"},{"item":"fastclick","response":"success"},{"item":"fastify-accepts","response":"success"},{"item":"fastify-favicon","response":"success"},{"item":"fastify-rate-limit","response":"success"},{"item":"favico.js","response":"success"},{"item":"favicons","response":"success"},{"item":"favicons-webpack-plugin","response":"success"},{"item":"fb-watchman","response":"success"},{"item":"fbemitter","response":"success"},{"item":"feather-icons","response":"success"},{"item":"feather-route-matcher","response":"success"},{"item":"featherlight","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__authentication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-client","response":"success"},{"item":"feathersjs__authentication-jwt","response":"success"},{"item":"feathersjs__authentication-local","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-oauth1","response":"success"},{"item":"feathersjs__authentication-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__configuration","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__errors","response":"success"},{"item":"feathersjs__express","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__feathers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n"},{"item":"feathersjs__primus","response":"success"},{"item":"feathersjs__primus-client","response":"success"},{"item":"feathersjs__rest-client","response":"success"},{"item":"feathersjs__socket-commons","response":"success"},{"item":"feathersjs__socketio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"feathersjs__socketio-client","response":"success"},{"item":"feedme","response":"success"},{"item":"feedparser","response":"success"},{"item":"fetch-jsonp","response":"success"},{"item":"fetch-mock","response":"success"},{"item":"fetch.io","response":"success"},{"item":"ffi","response":"success"},{"item":"ffi-napi","response":"success"},{"item":"ffmpeg","response":"success"},{"item":"ffmpeg-static","response":"success"},{"item":"ffmpeg.js","response":"success"},{"item":"ffprobe-static","response":"success"},{"item":"fhir","response":"success"},{"item":"fhir-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fhir-kit-client","response":"success"},{"item":"fibers","response":"success"},{"item":"fibjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/fibjs\n../DefinitelyTyped/types/fibjs/declare/assert.d.ts(789,11): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/fibjs/declare/console.d.ts(912,11): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/fibjs/declare/constants.d.ts(212,11): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(383,16): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(601,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(217,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(289,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dns.d.ts(234,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(238,16): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(672,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(214,16): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(314,16): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(508,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(76,8): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(78,8): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(81,8): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(83,8): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(85,8): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(87,8): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(88,8): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(247,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(391,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(222,16): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(476,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/path.d.ts(370,11): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/fibjs/declare/process.d.ts(556,11): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/fibjs/declare/punycode.d.ts(256,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/querystring.d.ts(262,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(215,16): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/timers.d.ts(330,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/tty.d.ts(223,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/url.d.ts(236,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/util.d.ts(983,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/vm.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/zlib.d.ts(520,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/node/assert.d.ts(52,14): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/node/console.d.ts(2,14): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/node/constants.d.ts(7,14): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/node/crypto.d.ts(204,11): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/node/dgram.d.ts(37,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/fs.d.ts(1670,15): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/node/globals.d.ts(143,13): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/node/globals.d.ts(147,13): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/node/globals.d.ts(148,13): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(181,15): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/node/http.d.ts(136,15): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(137,11): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(381,11): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/node/net.d.ts(56,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/os.d.ts(214,11): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/node/path.d.ts(152,14): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/node/process.d.ts(14,14): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/node/string_decoder.d.ts(2,11): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/node/ts3.2/globals.d.ts(10,11): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n"},{"item":"field","response":"success"},{"item":"figlet","response":"success"},{"item":"figma","response":"success"},{"item":"file-entry-cache","response":"success"},{"item":"file-exists","response":"success"},{"item":"file-loader","response":"success"},{"item":"file-saver","response":"success"},{"item":"file-size","response":"success"},{"item":"filesize-parser","response":"success"},{"item":"filesystem","response":"success"},{"item":"filewriter","response":"success"},{"item":"filing-cabinet","response":"success"},{"item":"fill-pdf","response":"success"},{"item":"filter-invalid-dom-props","response":"success"},{"item":"final-form-focus","response":"success"},{"item":"final-form-set-field-data","response":"success"},{"item":"final-form-set-field-touched","response":"success"},{"item":"finalhandler","response":"success"},{"item":"finch","response":"success"},{"item":"find","response":"success"},{"item":"find-cache-dir","response":"success"},{"item":"find-config","response":"success"},{"item":"find-down","response":"success"},{"item":"find-exec","response":"success"},{"item":"find-package-json","response":"success"},{"item":"find-parent-dir","response":"success"},{"item":"find-project-root","response":"success"},{"item":"find-root","response":"success"},{"item":"find-unused-sass-variables","response":"success"},{"item":"findup-sync","response":"success"},{"item":"fined","response":"success"},{"item":"fingerprintjs","response":"success"},{"item":"fingerprintjs2","response":"success"},{"item":"firebase-client","response":"success"},{"item":"firebase-token-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"firebird","response":"success"},{"item":"firefox","response":"success"},{"item":"firefox-webext-browser","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"firmata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"first-mate","response":"success"},{"item":"fixed-data-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"fixed-data-table-2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"flagged-respawn","response":"success"},{"item":"flake-idgen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flat","response":"success"},{"item":"flat-cache","response":"success"},{"item":"flatbuffers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"flatbush","response":"success"},{"item":"fleximap","response":"success"},{"item":"flexmonster","response":"success"},{"item":"flexslider","response":"success"},{"item":"flickity","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flight","response":"success"},{"item":"flightplan","response":"success"},{"item":"flipsnap","response":"success"},{"item":"float-equal","response":"success"},{"item":"float-regex","response":"success"},{"item":"flot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"flowdoc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\nnode_modules/typescript/lib/lib.dom.d.ts(4585,40): error TS2344: Type 'HTMLAnchorElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4658,39): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4703,38): error TS2344: Type 'HTMLAnchorElement | HTMLAreaElement' does not satisfy the constraint 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4725,40): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4737,40): error TS2344: Type 'HTMLScriptElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4961,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4962,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(5331,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(5332,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(6221,11): error TS2430: Interface 'HTMLAnchorElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6475,11): error TS2430: Interface 'HTMLButtonElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6767,11): error TS2430: Interface 'HTMLEmbedElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6801,11): error TS2430: Interface 'HTMLFieldSetElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7304,11): error TS2430: Interface 'HTMLInputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7508,11): error TS2430: Interface 'HTMLLIElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7568,11): error TS2430: Interface 'HTMLLinkElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7981,11): error TS2430: Interface 'HTMLOListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8002,11): error TS2430: Interface 'HTMLObjectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8216,11): error TS2430: Interface 'HTMLOutputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8260,11): error TS2430: Interface 'HTMLParamElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8365,11): error TS2430: Interface 'HTMLScriptElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8414,11): error TS2430: Interface 'HTMLSelectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8529,11): error TS2430: Interface 'HTMLSourceElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8569,11): error TS2430: Interface 'HTMLStyleElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8950,11): error TS2430: Interface 'HTMLTextAreaElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(9120,11): error TS2430: Interface 'HTMLUListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11589,87): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Node'.\n Type 'HTMLAnchorElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11590,86): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Node'.\n Type 'SVGScriptElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(13142,11): error TS2430: Interface 'SVGComponentTransferFunctionElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13323,11): error TS2430: Interface 'SVGFEColorMatrixElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13741,11): error TS2430: Interface 'SVGFETurbulenceElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(14639,11): error TS2430: Interface 'SVGScriptElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(14686,11): error TS2430: Interface 'SVGStyleElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\n"},{"item":"flowjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"fluent","response":"success"},{"item":"fluent-ffmpeg","response":"success"},{"item":"fluent-langneg","response":"success"},{"item":"fluent-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__bundle","response":"success"},{"item":"fluent__dedent","response":"success"},{"item":"fluent__langneg","response":"success"},{"item":"fluent__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__sequence","response":"success"},{"item":"flush-write-stream","response":"success"},{"item":"flushable","response":"success"},{"item":"flux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fluxible","response":"success"},{"item":"fluxible-addons-react","response":"success"},{"item":"fluxible-router","response":"success"},{"item":"fluxxor","response":"success"},{"item":"fm-websync","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fnando__sparkline","response":"success"},{"item":"fnv-lite","response":"success"},{"item":"focus-within","response":"success"},{"item":"follow-redirects","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"fontfaceobserver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"fontkit","response":"success"},{"item":"fontoxml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"force-graph","response":"success"},{"item":"forever-agent","response":"success"},{"item":"forever-monitor","response":"success"},{"item":"forge-apis","response":"success"},{"item":"forge-viewer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"form-serialize","response":"success"},{"item":"form-serializer","response":"success"},{"item":"form-urlencoded","response":"success"},{"item":"format-duration","response":"success"},{"item":"format-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"format-link-header","response":"success"},{"item":"format-unicorn","response":"success"},{"item":"format-util","response":"success"},{"item":"formidable","response":"success"},{"item":"formol","response":"success"},{"item":"forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"forwarded","response":"success"},{"item":"fossil-delta","response":"success"},{"item":"foundation","response":"success"},{"item":"fpsmeter","response":"success"},{"item":"framebus","response":"success"},{"item":"franc","response":"success"},{"item":"frappe-gantt","response":"success"},{"item":"frctl__fractal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n"},{"item":"frecency","response":"success"},{"item":"freedom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"freeport","response":"success"},{"item":"fresh","response":"success"},{"item":"freshy","response":"success"},{"item":"frida-gum","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/frida-gum/index.d.ts(2179,15): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5621,11): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5626,13): error TS2300: Duplicate identifier 'File'.\n"},{"item":"friendly-errors-webpack-plugin","response":"success"},{"item":"frisby","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"from","response":"success"},{"item":"from2","response":"success"},{"item":"fromjs","response":"success"},{"item":"fs-capacitor","response":"success"},{"item":"fs-cson","response":"success"},{"item":"fs-ext","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise-es6","response":"success"},{"item":"fs-finder","response":"success"},{"item":"fs-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fs-plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-readdir-recursive","response":"success"},{"item":"fs-readfile-promise","response":"success"},{"item":"fscreen","response":"success"},{"item":"ftdomdelegate","response":"success"},{"item":"ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ftpd","response":"success"},{"item":"ftps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fullcalendar__vue","response":"success"},{"item":"fullname","response":"success"},{"item":"fullpage.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"function-bind","response":"success"},{"item":"fundamental-react","response":"success"},{"item":"fusioncharts","response":"success"},{"item":"fuzzaldrin","response":"success"},{"item":"fuzzaldrin-plus","response":"success"},{"item":"fuzzy-search","response":"success"},{"item":"fuzzyset","response":"success"},{"item":"fuzzyset.js","response":"success"},{"item":"fxjs","response":"success"},{"item":"fxn","response":"success"},{"item":"gae.channel.api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gamedig","response":"success"},{"item":"gamepad","response":"success"},{"item":"gamequery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"gandi-livedns","response":"success"},{"item":"gapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.auth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.acceleratedmobilepageurl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangeseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexperiencereport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.admin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsense","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsensehost","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analyticsreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androiddeviceprovisioning","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidenterprise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidpublisher","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appengine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appsactivity","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appstate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquerydatatransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.blogger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.books","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.civicinfo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.classroom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbilling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbuild","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouddebugger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouderrorreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudfunctions","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudiot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudkms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudmonitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudresourcemanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtrace","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouduseraccounts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.compute","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.consumersurveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.container","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.content","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.customsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataproc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.deploymentmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dfareporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.discovery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dlp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclickbidmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclicksearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebasedynamiclinks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaseremoteconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaserules","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firestore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fitness","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fusiontables","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.games","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesconfiguration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.genomics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gmail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupsmigration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupssettings","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.iam","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.identitytoolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.kgsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.language","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.licensing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.logging","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.manufacturers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.mirror","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.ml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.monitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oauth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oslogin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.partners","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.photoslibrary","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playcustomapp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playmoviespartner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plusdomains","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.prediction","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.proximitybeacon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pubsub","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.qpxexpress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.reseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.resourceviews","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.runtimeconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.safebrowsing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.script","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.searchconsole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicecontrol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicemanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.serviceuser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sheets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.siteverification","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.slides","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sourcerepo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spectrum","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.speech","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sqladmin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storagetransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.streetviewpublish","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.surveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tagmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.taskqueue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.toolresults","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vault","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.videointelligence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vision","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webfonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webmasters","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubereporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gaussian","response":"success"},{"item":"gaze","response":"success"},{"item":"gc-stats","response":"success"},{"item":"gdal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"geetest","response":"success"},{"item":"gematriya","response":"success"},{"item":"gen-readlines","response":"success"},{"item":"generate-changelog","response":"success"},{"item":"generate-json-webpack-plugin","response":"success"},{"item":"generic-functions","response":"success"},{"item":"generic-pool","response":"success"},{"item":"gently","response":"success"},{"item":"geobuf","response":"success"},{"item":"geodesy","response":"success"},{"item":"geoflatbush","response":"success"},{"item":"geoip-lite","response":"success"},{"item":"geojson","response":"success"},{"item":"geojson2osm","response":"success"},{"item":"geokdbush","response":"success"},{"item":"geolite2","response":"success"},{"item":"geometry-dom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/geometry-dom/index.d.ts(236,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPointReadOnly' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPointReadOnly; prototype: DOMPointReadOnly; fromPoint(other?: DOMPointInit): DOMPointReadOnly; }', but here has type '{ new (x: number, y: number, z: number, w: number): DOMPointReadOnly; prototype: DOMPointReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(241,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPoint' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; fromPoint(other?: DOMPointInit): DOMPoint; }', but here has type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(250,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(254,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(265,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRect' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRect; prototype: DOMRect; fromRect(other?: DOMRectInit): DOMRect; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRect; prototype: DOMRect; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(270,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRectReadOnly' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly; prototype: DOMRectReadOnly; fromRect(other?: DOMRectInit): DOMRectReadOnly; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRectReadOnly; prototype: DOMRectReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(279,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(283,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(287,5): error TS2687: All declarations of 'width' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(291,5): error TS2687: All declarations of 'height' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(299,5): error TS2687: All declarations of 'length' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(307,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMQuad' must be of type '{ new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; fromQuad(other?: DOMQuadInit): DOMQuad; fromRect(other?: DOMRectInit): DOMQuad; }', but here has type '{ new (rect?: DOMRectInit): DOMQuad; new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(313,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrixReadOnly' must be of type '{ new (init?: string | number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly; fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly; fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly; toString(): string; }', but here has type '{ new (numberSequence: number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(318,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrix' must be of type '{ new (init?: string | number[]): DOMMatrix; prototype: DOMMatrix; fromFloat32Array(array32: Float32Array): DOMMatrix; fromFloat64Array(array64: Float64Array): DOMMatrix; fromMatrix(other?: DOMMatrixInit): DOMMatrix; }', but here has type '{ new (): DOMMatrix; new (transformList: string): DOMMatrix; new (other: DOMMatrixReadOnly): DOMMatrix; new (array: number[]): DOMMatrix; new (a: number, b: number, c: number, d: number, e: number, f: number): DOMMatrix; prototype: DOMMatrix; }'.\nnode_modules/typescript/lib/lib.dom.d.ts(348,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(349,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(361,5): error TS2687: All declarations of 'height' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(362,5): error TS2687: All declarations of 'width' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(363,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(364,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(4179,14): error TS2687: All declarations of 'length' must have identical modifiers.\n"},{"item":"geopattern","response":"success"},{"item":"geopoint","response":"success"},{"item":"gestalt","response":"success"},{"item":"get-caller-file","response":"success"},{"item":"get-certain","response":"success"},{"item":"get-emoji","response":"success"},{"item":"get-folder-size","response":"success"},{"item":"get-func-name","response":"success"},{"item":"get-node-dimensions","response":"success"},{"item":"get-res","response":"success"},{"item":"get-value","response":"success"},{"item":"getenv","response":"success"},{"item":"getos","response":"success"},{"item":"getpass","response":"success"},{"item":"gettext-parser","response":"success"},{"item":"gettext.js","response":"success"},{"item":"gfc","response":"success"},{"item":"gh-pages","response":"success"},{"item":"ghauth","response":"success"},{"item":"ghost-storage-base","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"gifffer","response":"success"},{"item":"gijgo","response":"success"},{"item":"giphy-api","response":"success"},{"item":"giraffe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"git","response":"success"},{"item":"git-add-remote","response":"success"},{"item":"git-branch","response":"success"},{"item":"git-branch-is","response":"success"},{"item":"git-config","response":"success"},{"item":"git-config-path","response":"success"},{"item":"git-raw-commits","response":"success"},{"item":"git-repo-name","response":"success"},{"item":"git-rev","response":"success"},{"item":"git-rev-sync","response":"success"},{"item":"git-revision-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"git-root-dir","response":"success"},{"item":"git-semver-tags","response":"success"},{"item":"git-url-parse","response":"success"},{"item":"git-user-email","response":"success"},{"item":"git-user-name","response":"success"},{"item":"git-username","response":"success"},{"item":"gitconfiglocal","response":"success"},{"item":"github-url-from-git","response":"success"},{"item":"github-url-to-object","response":"success"},{"item":"github-username-regex","response":"success"},{"item":"gl","response":"success"},{"item":"gl-fbo","response":"success"},{"item":"gl-matrix","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"gl-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of Parameter - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gl-react-dom","response":"success"},{"item":"gl-react-expo","response":"success"},{"item":"gl-react-headless","response":"success"},{"item":"gl-react-native","response":"success"},{"item":"gl-shader","response":"success"},{"item":"gl-texture2d","response":"success"},{"item":"gl-vec2","response":"success"},{"item":"gl-vec3","response":"success"},{"item":"gl-vec4","response":"success"},{"item":"gldatepicker","response":"success"},{"item":"glidejs","response":"success"},{"item":"glob","response":"success"},{"item":"glob-base","response":"success"},{"item":"glob-expand","response":"success"},{"item":"glob-parent","response":"success"},{"item":"glob-stream","response":"success"},{"item":"glob-to-regexp","response":"success"},{"item":"glob-watcher","response":"success"},{"item":"global-agent","response":"success"},{"item":"global-modules","response":"success"},{"item":"global-modules-path","response":"success"},{"item":"global-npm","response":"success"},{"item":"global-paths","response":"success"},{"item":"global-prefix","response":"success"},{"item":"global-tunnel-ng","response":"success"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize-compiler","response":"success"},{"item":"globalthis","response":"success"},{"item":"globjoin","response":"success"},{"item":"globule","response":"success"},{"item":"glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"gm","response":"success"},{"item":"go","response":"success"},{"item":"good-storage","response":"success"},{"item":"google-adwords-scripts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"google-apps-script","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/google-apps-script\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-apps-script-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-closure-compiler","response":"success"},{"item":"google-cloud__datastore","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-cloud__kms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-cloud__tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"google-cloud__text-to-speech","response":"success"},{"item":"google-ddns","response":"success"},{"item":"google-drive-realtime-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-earth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-fonts","response":"success"},{"item":"google-images","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-libphonenumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-map-react","response":"success"},{"item":"google-maps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-maps-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-protobuf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-translate-api","response":"success"},{"item":"google.analytics","response":"success"},{"item":"google.feeds","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.fonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.geolocation","response":"success"},{"item":"google.picker","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.script.client-side","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.visualization","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google__maps","response":"success"},{"item":"google__markerclustererplus","response":"success"},{"item":"googlemaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlemaps.infobubble","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlepay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"got","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"graceful-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gradient-string","response":"success"},{"item":"graham_scan","response":"success"},{"item":"gramps__rest-helpers","response":"success"},{"item":"graphite","response":"success"},{"item":"graphite-udp","response":"success"},{"item":"graphlib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"graphlib-dot","response":"success"},{"item":"graphql-api-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphql-bigint","response":"success"},{"item":"graphql-date","response":"success"},{"item":"graphql-deduplicator","response":"success"},{"item":"graphql-depth-limit","response":"success"},{"item":"graphql-errors","response":"success"},{"item":"graphql-fields","response":"success"},{"item":"graphql-iso-date","response":"success"},{"item":"graphql-list-fields","response":"success"},{"item":"graphql-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"graphql-relay","response":"success"},{"item":"graphql-resolve-batch","response":"success"},{"item":"graphql-resolvers","response":"success"},{"item":"graphql-type-json","response":"success"},{"item":"graphql-type-uuid","response":"success"},{"item":"graphql-upload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphviz","response":"success"},{"item":"grasp","response":"success"},{"item":"gravatar","response":"success"},{"item":"gray-percentage","response":"success"},{"item":"graylog2","response":"success"},{"item":"greasemonkey","response":"success"},{"item":"grecaptcha","response":"success"},{"item":"gregorian-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"gremlin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"grid-template-parser","response":"success"},{"item":"gridfs-stream","response":"success"},{"item":"group-array","response":"success"},{"item":"growing-io","response":"success"},{"item":"grpc-error","response":"success"},{"item":"grunt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"gsap","response":"success"},{"item":"gtag.js","response":"success"},{"item":"gtin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"guardian__prosemirror-invisibles","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"guid","response":"success"},{"item":"gulp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"gulp-angular-templatecache","response":"success"},{"item":"gulp-autoprefixer","response":"success"},{"item":"gulp-babel","response":"success"},{"item":"gulp-batch","response":"success"},{"item":"gulp-bump","response":"success"},{"item":"gulp-cache","response":"success"},{"item":"gulp-cached","response":"success"},{"item":"gulp-change","response":"success"},{"item":"gulp-changed","response":"success"},{"item":"gulp-cheerio","response":"success"},{"item":"gulp-clean-dest","response":"success"},{"item":"gulp-coffeeify","response":"success"},{"item":"gulp-coffeelint","response":"success"},{"item":"gulp-concat","response":"success"},{"item":"gulp-connect","response":"success"},{"item":"gulp-copy","response":"success"},{"item":"gulp-csso","response":"success"},{"item":"gulp-debug","response":"success"},{"item":"gulp-diff","response":"success"},{"item":"gulp-dtsm","response":"success"},{"item":"gulp-espower","response":"success"},{"item":"gulp-file-include","response":"success"},{"item":"gulp-filter","response":"success"},{"item":"gulp-flatten","response":"success"},{"item":"gulp-gh-pages","response":"success"},{"item":"gulp-gzip","response":"success"},{"item":"gulp-header","response":"success"},{"item":"gulp-help","response":"success"},{"item":"gulp-help-doc","response":"success"},{"item":"gulp-html-prettify","response":"success"},{"item":"gulp-html-replace","response":"success"},{"item":"gulp-htmlmin","response":"success"},{"item":"gulp-if","response":"success"},{"item":"gulp-image","response":"success"},{"item":"gulp-image-resize","response":"success"},{"item":"gulp-imagemin","response":"success"},{"item":"gulp-inject","response":"success"},{"item":"gulp-insert","response":"success"},{"item":"gulp-install","response":"success"},{"item":"gulp-intercept","response":"success"},{"item":"gulp-istanbul","response":"success"},{"item":"gulp-jade","response":"success"},{"item":"gulp-jasmine","response":"success"},{"item":"gulp-jasmine-browser","response":"success"},{"item":"gulp-json-editor","response":"success"},{"item":"gulp-json-validator","response":"success"},{"item":"gulp-jsonmin","response":"success"},{"item":"gulp-jsonminify","response":"success"},{"item":"gulp-jspm","response":"success"},{"item":"gulp-less","response":"success"},{"item":"gulp-load-plugins","response":"success"},{"item":"gulp-minify-css","response":"success"},{"item":"gulp-minify-html","response":"success"},{"item":"gulp-mocha","response":"success"},{"item":"gulp-modernizr","response":"success"},{"item":"gulp-msbuild","response":"success"},{"item":"gulp-mustache","response":"success"},{"item":"gulp-newer","response":"success"},{"item":"gulp-ng-annotate","response":"success"},{"item":"gulp-nodemon","response":"success"},{"item":"gulp-nunit-runner","response":"success"},{"item":"gulp-plumber","response":"success"},{"item":"gulp-postcss","response":"success"},{"item":"gulp-protractor","response":"success"},{"item":"gulp-pug-i18n","response":"success"},{"item":"gulp-remember","response":"success"},{"item":"gulp-rename","response":"success"},{"item":"gulp-replace","response":"success"},{"item":"gulp-responsive-images","response":"success"},{"item":"gulp-rev","response":"success"},{"item":"gulp-rev-replace","response":"success"},{"item":"gulp-ruby-sass","response":"success"},{"item":"gulp-sass","response":"success"},{"item":"gulp-sass-variables","response":"success"},{"item":"gulp-sequence","response":"success"},{"item":"gulp-size","response":"success"},{"item":"gulp-sort","response":"success"},{"item":"gulp-sourcemaps","response":"success"},{"item":"gulp-strip-comments","response":"success"},{"item":"gulp-strip-debug","response":"success"},{"item":"gulp-stylus","response":"success"},{"item":"gulp-svg-sprite","response":"success"},{"item":"gulp-svgmin","response":"success"},{"item":"gulp-tap","response":"success"},{"item":"gulp-task-listing","response":"success"},{"item":"gulp-template","response":"success"},{"item":"gulp-terser","response":"success"},{"item":"gulp-tsd","response":"success"},{"item":"gulp-uglify","response":"success"},{"item":"gulp-useref","response":"success"},{"item":"gulp-util","response":"success"},{"item":"gulp-watch","response":"success"},{"item":"gulp-zip","response":"success"},{"item":"gun","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"gyronorm","response":"success"},{"item":"gzip-js","response":"success"},{"item":"h2o2","response":"success"},{"item":"halfred","response":"success"},{"item":"halogen","response":"success"},{"item":"halogenium","response":"success"},{"item":"hammerjs","response":"success"},{"item":"handlebars-helpers","response":"success"},{"item":"hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi-auth-basic","response":"success"},{"item":"hapi-auth-bearer-token","response":"success"},{"item":"hapi-auth-cookie","response":"success"},{"item":"hapi-decorators","response":"success"},{"item":"hapi-pino","response":"success"},{"item":"hapi-server-session","response":"success"},{"item":"hapi__b64","response":"success"},{"item":"hapi__basic","response":"success"},{"item":"hapi__bell","response":"success"},{"item":"hapi__catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__catbox-memcached","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"hapi__catbox-memory","response":"success"},{"item":"hapi__catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"hapi__cookie","response":"success"},{"item":"hapi__crumb","response":"success"},{"item":"hapi__glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__h2o2","response":"success"},{"item":"hapi__hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__hawk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__inert","response":"success"},{"item":"hapi__joi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"hapi__mimos","response":"success"},{"item":"hapi__nes","response":"success"},{"item":"hapi__podium","response":"success"},{"item":"hapi__shot","response":"success"},{"item":"hapi__sntp","response":"success"},{"item":"hapi__vision","response":"success"},{"item":"hapi__yar","response":"success"},{"item":"happypack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"har-format","response":"success"},{"item":"hard-source-webpack-plugin","response":"success"},{"item":"hark","response":"success"},{"item":"harmon","response":"success"},{"item":"harmony-proxy","response":"success"},{"item":"has-ansi","response":"success"},{"item":"hash-file","response":"success"},{"item":"hash-it","response":"success"},{"item":"hash-stream","response":"success"},{"item":"hash-sum","response":"success"},{"item":"hasher","response":"success"},{"item":"hashids","response":"success"},{"item":"hashmap","response":"success"},{"item":"hashring","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"hashset","response":"success"},{"item":"hashtable","response":"success"},{"item":"hashtag-regex","response":"success"},{"item":"hast","response":"success"},{"item":"hat","response":"success"},{"item":"haversine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hdkey","response":"success"},{"item":"he","response":"success"},{"item":"headroom","response":"success"},{"item":"heap","response":"success"},{"item":"heapdump","response":"success"},{"item":"heatmap.js","response":"success"},{"item":"hedron","response":"success"},{"item":"hellojs","response":"success"},{"item":"hellosign-embedded","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"helmet","response":"success"},{"item":"heredatalens","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heremaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heroku-logger","response":"success"},{"item":"hex-rgba","response":"success"},{"item":"hexo","response":"success"},{"item":"hexo-bunyan","response":"success"},{"item":"hexo-fs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"hexo-log","response":"success"},{"item":"hexo-util","response":"success"},{"item":"hh-mm-ss","response":"success"},{"item":"hig__button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"highcharts-ng","response":"success"},{"item":"highland","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"highlight-words-core","response":"success"},{"item":"highlight.js","response":"success"},{"item":"highlightjs","response":"success"},{"item":"hiredis","response":"success"},{"item":"hirestime","response":"success"},{"item":"history","response":"success"},{"item":"history.js","response":"success"},{"item":"historykana","response":"success"},{"item":"hjson","response":"success"},{"item":"hls-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hls.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"hoek","response":"success"},{"item":"hogan.js","response":"success"},{"item":"hoist-non-react-statics","response":"success"},{"item":"holderjs","response":"success"},{"item":"honeybadger","response":"success"},{"item":"hooker","response":"success"},{"item":"hookrouter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hopscotch","response":"success"},{"item":"host-validation","response":"success"},{"item":"hosted-git-info","response":"success"},{"item":"hostile","response":"success"},{"item":"howler","response":"success"},{"item":"hoxy","response":"success"},{"item":"hpp","response":"success"},{"item":"html-entities","response":"success"},{"item":"html-minifier","response":"success"},{"item":"html-minifier-terser","response":"success"},{"item":"html-parser","response":"success"},{"item":"html-pdf","response":"success"},{"item":"html-tag-names","response":"success"},{"item":"html-to-draftjs","response":"success"},{"item":"html-to-text","response":"success"},{"item":"html-truncate","response":"success"},{"item":"html-validator","response":"success"},{"item":"html-void-elements","response":"success"},{"item":"html-webpack-plugin","response":"success"},{"item":"html-webpack-template","response":"success"},{"item":"html2canvas","response":"success"},{"item":"html5-history","response":"success"},{"item":"html5-to-pdf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"html5plus","response":"success"},{"item":"htmlbars-inline-precompile","response":"success"},{"item":"htmlescape","response":"success"},{"item":"htmlhint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"htmlparser2","response":"success"},{"item":"htmltojsx","response":"success"},{"item":"http-assert","response":"success"},{"item":"http-aws-es","response":"success"},{"item":"http-build-query","response":"success"},{"item":"http-cache-semantics","response":"success"},{"item":"http-codes","response":"success"},{"item":"http-context","response":"success"},{"item":"http-errors","response":"success"},{"item":"http-link-header","response":"success"},{"item":"http-proxy","response":"success"},{"item":"http-proxy-agent","response":"success"},{"item":"http-proxy-middleware","response":"success"},{"item":"http-rx","response":"success"},{"item":"http-server","response":"success"},{"item":"http-string-parser","response":"success"},{"item":"httperr","response":"success"},{"item":"hubot","response":"success"},{"item":"hubspot-pace","response":"success"},{"item":"human-date","response":"success"},{"item":"human-interval","response":"success"},{"item":"humane-js","response":"success"},{"item":"humanize-duration","response":"success"},{"item":"humanize-ms","response":"success"},{"item":"humanize-plus","response":"success"},{"item":"humanparser","response":"success"},{"item":"hummus-recipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"humps","response":"success"},{"item":"hyco-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"hyper-aws4","response":"success"},{"item":"hyperscript","response":"success"},{"item":"hypertext-application-language","response":"success"},{"item":"hystrixjs","response":"success"},{"item":"i18n","response":"success"},{"item":"i18n-abide","response":"success"},{"item":"i18n-js","response":"success"},{"item":"i18next-ko","response":"success"},{"item":"i18next-node-fs-backend","response":"success"},{"item":"i18next-sprintf-postprocessor","response":"success"},{"item":"i2c-bus","response":"success"},{"item":"iab-vpaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iarna__toml","response":"success"},{"item":"iban","response":"success"},{"item":"ibm-mobilefirst","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ibm-openapi-validator","response":"success"},{"item":"ibm_db","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ical","response":"success"},{"item":"icepick","response":"success"},{"item":"icheck","response":"success"},{"item":"icon-gen","response":"success"},{"item":"iconv","response":"success"},{"item":"icss-utils","response":"success"},{"item":"identicon.js","response":"success"},{"item":"idyll","response":"success"},{"item":"idyll-ast","response":"success"},{"item":"idyll-compiler","response":"success"},{"item":"idyll-document","response":"success"},{"item":"iferr","response":"success"},{"item":"iframe-resizer","response":"success"},{"item":"ifvisible","response":"success"},{"item":"igdb-api-node","response":"success"},{"item":"ignite-ui","response":"success"},{"item":"ignore-styles","response":"success"},{"item":"ignore-walk","response":"success"},{"item":"iltorb","response":"success"},{"item":"image-thumbnail","response":"success"},{"item":"imagemagick","response":"success"},{"item":"imagemagick-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imagemapster","response":"success"},{"item":"imagemin","response":"success"},{"item":"imagemin-gifsicle","response":"success"},{"item":"imagemin-jpegtran","response":"success"},{"item":"imagemin-mozjpeg","response":"success"},{"item":"imagemin-optipng","response":"success"},{"item":"imagemin-pngquant","response":"success"},{"item":"imagemin-svgo","response":"success"},{"item":"imagemin-webp","response":"success"},{"item":"images","response":"success"},{"item":"imagesloaded","response":"success"},{"item":"imap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"imap-simple","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imgur-rest-api","response":"success"},{"item":"immediate","response":"success"},{"item":"imperium","response":"success"},{"item":"impress","response":"success"},{"item":"imsi-grok","response":"success"},{"item":"imul","response":"success"},{"item":"imurmurhash","response":"success"},{"item":"in-app-purchase","response":"success"},{"item":"inboxsdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"incremental-dom","response":"success"},{"item":"indefinite","response":"success"},{"item":"inert","response":"success"},{"item":"ineum","response":"success"},{"item":"inflation","response":"success"},{"item":"inflected","response":"success"},{"item":"inflection","response":"success"},{"item":"infobox-parser","response":"success"},{"item":"inherits","response":"success"},{"item":"ini","response":"success"},{"item":"iniparser","response":"success"},{"item":"init-package-json","response":"success"},{"item":"ink-select-input","response":"success"},{"item":"ink-spinner","response":"success"},{"item":"ink-table","response":"success"},{"item":"ink-testing-library","response":"success"},{"item":"ink-text-input","response":"success"},{"item":"inline-critical","response":"success"},{"item":"inline-css","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"inline-style-prefixer","response":"success"},{"item":"input-moment","response":"success"},{"item":"inputmask","response":"success"},{"item":"inquirer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"inquirer-npm-name","response":"success"},{"item":"insert-css","response":"success"},{"item":"insert-module-globals","response":"success"},{"item":"insert-text-at-cursor","response":"success"},{"item":"insight","response":"success"},{"item":"inspectlet-es","response":"success"},{"item":"integer","response":"success"},{"item":"integrate-adaptive-simpson","response":"success"},{"item":"intercept-stdout","response":"success"},{"item":"intercom-client","response":"success"},{"item":"intercom-web","response":"success"},{"item":"intercomjs","response":"success"},{"item":"interface-datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"internal-slot","response":"success"},{"item":"interpret","response":"success"},{"item":"intersects","response":"success"},{"item":"intersperse","response":"success"},{"item":"intl","response":"success"},{"item":"intl-tel-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/intl-tel-input/index.d.ts(125,30): error TS2304: Cannot find name 'JQueryDeferred'.\n"},{"item":"intrinsic-scale","response":"success"},{"item":"intro.js","response":"success"},{"item":"invariant","response":"success"},{"item":"inversify-devtools","response":"success"},{"item":"iobroker","response":"success"},{"item":"ion-rangeslider","response":"success"},{"item":"iopipe__iopipe","response":"success"},{"item":"ioredis","response":"success"},{"item":"iost-contract","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/iost-contract"},{"item":"iota.lib.js","response":"success"},{"item":"ip","response":"success"},{"item":"ip-address","response":"success"},{"item":"ip-subnet-calculator","response":"success"},{"item":"ipcheck","response":"success"},{"item":"irc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iri","response":"success"},{"item":"iron","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"is","response":"success"},{"item":"is-absolute","response":"success"},{"item":"is-alphanumerical","response":"success"},{"item":"is-array","response":"success"},{"item":"is-base64","response":"success"},{"item":"is-blank","response":"success"},{"item":"is-buffer","response":"success"},{"item":"is-callable","response":"success"},{"item":"is-charging","response":"success"},{"item":"is-ci","response":"success"},{"item":"is-color","response":"success"},{"item":"is-date-object","response":"success"},{"item":"is-dotdir","response":"success"},{"item":"is-dotfile","response":"success"},{"item":"is-empty","response":"success"},{"item":"is-empty-object","response":"success"},{"item":"is-even","response":"success"},{"item":"is-finite","response":"success"},{"item":"is-function","response":"success"},{"item":"is-generator","response":"success"},{"item":"is-generator-function","response":"success"},{"item":"is-git-url","response":"success"},{"item":"is-glob","response":"success"},{"item":"is-hotkey","response":"success"},{"item":"is-integer","response":"success"},{"item":"is-my-json-valid","response":"success"},{"item":"is-natural-number","response":"success"},{"item":"is-negated-glob","response":"success"},{"item":"is-number","response":"success"},{"item":"is-number-like","response":"success"},{"item":"is-object","response":"success"},{"item":"is-odd","response":"success"},{"item":"is-progressive","response":"success"},{"item":"is-promise","response":"success"},{"item":"is-relative","response":"success"},{"item":"is-relative-path","response":"success"},{"item":"is-running","response":"success"},{"item":"is-ssh","response":"success"},{"item":"is-touch-device","response":"success"},{"item":"is-trademarked","response":"success"},{"item":"is-typedarray","response":"success"},{"item":"is-unc-path","response":"success"},{"item":"is-url","response":"success"},{"item":"is-uuid","response":"success"},{"item":"is-valid-glob","response":"success"},{"item":"is-valid-path","response":"success"},{"item":"is-windows","response":"success"},{"item":"isaac","response":"success"},{"item":"isarray","response":"success"},{"item":"isbn-utils","response":"success"},{"item":"iscroll","response":"success"},{"item":"isexe","response":"success"},{"item":"iso-3166-2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iso8601-localizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"isomorphic-fetch","response":"success"},{"item":"isomorphic-form-data","response":"success"},{"item":"isotope-layout","response":"success"},{"item":"isstream","response":"success"},{"item":"issue-parser","response":"success"},{"item":"istanbul","response":"success"},{"item":"istanbul-lib-coverage","response":"success"},{"item":"istanbul-lib-hook","response":"success"},{"item":"istanbul-lib-instrument","response":"success"},{"item":"istanbul-lib-report","response":"success"},{"item":"istanbul-lib-source-maps","response":"success"},{"item":"istanbul-middleware","response":"success"},{"item":"istanbul-reports","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"istextorbinary","response":"success"},{"item":"it-all","response":"success"},{"item":"it-pushable","response":"success"},{"item":"ityped","response":"success"},{"item":"ix.js","response":"success"},{"item":"jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"jade","response":"success"},{"item":"jaeger-client","response":"success"},{"item":"jake","response":"success"},{"item":"jalaali-js","response":"success"},{"item":"japan-postal-code","response":"success"},{"item":"japanese-holidays","response":"success"},{"item":"jasmine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'statements' of undefined\n"},{"item":"jasmine-ajax","response":"success"},{"item":"jasmine-data-provider","response":"success"},{"item":"jasmine-data_driven_tests","response":"success"},{"item":"jasmine-enzyme","response":"success"},{"item":"jasmine-es6-promise-matchers","response":"success"},{"item":"jasmine-fixture","response":"success"},{"item":"jasmine-given","response":"success"},{"item":"jasmine-jquery","response":"success"},{"item":"jasmine-matchers","response":"success"},{"item":"jasmine-node","response":"success"},{"item":"jasmine-promise-matchers","response":"success"},{"item":"jasmine_dom_matchers","response":"success"},{"item":"jasminewd2","response":"success"},{"item":"java","response":"success"},{"item":"java-applet","response":"success"},{"item":"javascript-astar","response":"success"},{"item":"javascript-bignum","response":"success"},{"item":"javascript-state-machine","response":"success"},{"item":"javascript-time-ago","response":"success"},{"item":"jbinary","response":"success"},{"item":"jcanvas","response":"success"},{"item":"jdataview","response":"success"},{"item":"jee-jsf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jenkins","response":"success"},{"item":"jest","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"jest-axe","response":"success"},{"item":"jest-cucumber-fusion","response":"success"},{"item":"jest-dev-server","response":"success"},{"item":"jest-environment-puppeteer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/environment/build/index.d.ts(11,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/jest-environment-puppeteer/node_modules/jest-mock/build/index\"' can only be default-imported using the 'esModuleInterop' flag\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/source-map/build/getCallsite.d.ts(8,100): error TS2503: Cannot find namespace 'callsites'.\n"},{"item":"jest-expect-message","response":"success"},{"item":"jest-image-snapshot","response":"success"},{"item":"jest-in-case","response":"success"},{"item":"jest-json-schema","response":"success"},{"item":"jest-matcher-one-of","response":"success"},{"item":"jest-plugin-context","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/jest-plugin-context"},{"item":"jest-plugin-set","response":"success"},{"item":"jest-sinon","response":"success"},{"item":"jest-specific-snapshot","response":"success"},{"item":"jest-when","response":"success"},{"item":"jexl","response":"success"},{"item":"jfp","response":"success"},{"item":"jfs","response":"success"},{"item":"jira-client","response":"success"},{"item":"jju","response":"success"},{"item":"jjv","response":"success"},{"item":"jjve","response":"success"},{"item":"jmespath","response":"success"},{"item":"johnny-five","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"joi","response":"success"},{"item":"joi-password-complexity","response":"success"},{"item":"joigoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"josa","response":"success"},{"item":"jotform-css.js","response":"success"},{"item":"jpeg-autorotate","response":"success"},{"item":"jpegtran-bin","response":"success"},{"item":"jpm","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jqgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jqrangeslider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-ajax-chain","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-alertable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-animate-scroll","response":"success"},{"item":"jquery-awesome-cursor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-backstretch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-countdown","response":"success"},{"item":"jquery-countto","response":"success"},{"item":"jquery-cropbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-cropper","response":"success"},{"item":"jquery-deferred","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery-deparam","response":"success"},{"item":"jquery-drawer","response":"success"},{"item":"jquery-easy-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-editable-select","response":"success"},{"item":"jquery-focus-exit","response":"success"},{"item":"jquery-focusable","response":"success"},{"item":"jquery-formatdatetime","response":"success"},{"item":"jquery-fullscreen","response":"success"},{"item":"jquery-galleria","response":"success"},{"item":"jquery-gray","response":"success"},{"item":"jquery-handsontable","response":"success"},{"item":"jquery-jcrop","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jquery-jsonrpcclient","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-knob","response":"success"},{"item":"jquery-lazyload","response":"success"},{"item":"jquery-loading-overlay","response":"success"},{"item":"jquery-mask-plugin","response":"success"},{"item":"jquery-maskmoney","response":"success"},{"item":"jquery-match-height","response":"success"},{"item":"jquery-migrate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mockjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mouse-exit","response":"success"},{"item":"jquery-mousewheel","response":"success"},{"item":"jquery-next-id","response":"success"},{"item":"jquery-param","response":"success"},{"item":"jquery-slimscroll","response":"success"},{"item":"jquery-slugify","response":"success"},{"item":"jquery-sortable","response":"success"},{"item":"jquery-steps","response":"success"},{"item":"jquery-sticky","response":"success"},{"item":"jquery-tags-input","response":"success"},{"item":"jquery-timeentry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toast-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toastmessage-plugin","response":"success"},{"item":"jquery-truncate-html","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-typeahead","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-urlparam","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-validation-unobtrusive","response":"success"},{"item":"jquery.address","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.appear","response":"success"},{"item":"jquery.are-you-sure","response":"success"},{"item":"jquery.autosize","response":"success"},{"item":"jquery.base64","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bbq","response":"success"},{"item":"jquery.blockui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bootstrap.wizard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.browser","response":"success"},{"item":"jquery.cleditor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.clientsidelogging","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorpicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.contextmenu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.cookie","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.customselect","response":"success"},{"item":"jquery.cycle","response":"success"},{"item":"jquery.cycle2","response":"success"},{"item":"jquery.dropotron","response":"success"},{"item":"jquery.dynatree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.elang","response":"success"},{"item":"jquery.fancytree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fileupload","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.filtertable","response":"success"},{"item":"jquery.finger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.flagstrap","response":"success"},{"item":"jquery.form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fullscreen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.gridster","response":"success"},{"item":"jquery.growl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"jquery.highlight-bartaz","response":"success"},{"item":"jquery.jnotify","response":"success"},{"item":"jquery.joyride","response":"success"},{"item":"jquery.jsignature","response":"success"},{"item":"jquery.leanmodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.livestampjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery.menuaim","response":"success"},{"item":"jquery.mmenu","response":"success"},{"item":"jquery.nicescroll","response":"success"},{"item":"jquery.notify","response":"success"},{"item":"jquery.notifybar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.noty","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'kind' of undefined\n"},{"item":"jquery.payment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.pin","response":"success"},{"item":"jquery.pjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.placeholder","response":"success"},{"item":"jquery.pnotify","response":"success"},{"item":"jquery.postmessage","response":"success"},{"item":"jquery.prettyphoto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.qrcode","response":"success"},{"item":"jquery.rateit","response":"success"},{"item":"jquery.rowgrid","response":"success"},{"item":"jquery.scrollto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplemodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplepagination","response":"success"},{"item":"jquery.simulate","response":"success"},{"item":"jquery.soap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.sortelements","response":"success"},{"item":"jquery.stickem","response":"success"},{"item":"jquery.superlink","response":"success"},{"item":"jquery.tagsmanager","response":"success"},{"item":"jquery.tile","response":"success"},{"item":"jquery.timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.tinycarousel","response":"success"},{"item":"jquery.tinyscrollbar","response":"success"},{"item":"jquery.tipsy","response":"success"},{"item":"jquery.tools","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.total-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.transit","response":"success"},{"item":"jquery.ui.datetimepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.ui.layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.uniform","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.validation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.watermark","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquerymobile","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jqueryui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"js-base64","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"js-beautify","response":"success"},{"item":"js-captcha","response":"success"},{"item":"js-clipper","response":"success"},{"item":"js-combinatorics","response":"success"},{"item":"js-cookie","response":"success"},{"item":"js-data-angular","response":"success"},{"item":"js-fixtures","response":"success"},{"item":"js-git","response":"success"},{"item":"js-levenshtein","response":"success"},{"item":"js-md5","response":"success"},{"item":"js-money","response":"success"},{"item":"js-nacl","response":"success"},{"item":"js-priority-queue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"js-quantities","response":"success"},{"item":"js-roman-numerals","response":"success"},{"item":"js-schema","response":"success"},{"item":"js-search","response":"success"},{"item":"js-sha512","response":"success"},{"item":"js-string-escape","response":"success"},{"item":"js-to-java","response":"success"},{"item":"js-url","response":"success"},{"item":"js-yaml","response":"success"},{"item":"js.spec","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsbn","response":"success"},{"item":"jschannel","response":"success"},{"item":"jscodeshift","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"jscrollpane","response":"success"},{"item":"jsdeferred","response":"success"},{"item":"jsdoc-to-markdown","response":"success"},{"item":"jsdom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsdom-global","response":"success"},{"item":"jsen","response":"success"},{"item":"jsend","response":"success"},{"item":"jsesc","response":"success"},{"item":"jsfl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'kind' of undefined\n"},{"item":"jsforce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsftp","response":"success"},{"item":"jsgraph","response":"success"},{"item":"jshamcrest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsmediatags","response":"success"},{"item":"jsmockito","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsnox","response":"success"},{"item":"json-buffer","response":"success"},{"item":"json-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"json-file-plus","response":"success"},{"item":"json-form-data","response":"success"},{"item":"json-js","response":"success"},{"item":"json-merge-patch","response":"success"},{"item":"json-parse-better-errors","response":"success"},{"item":"json-patch","response":"success"},{"item":"json-patch-gen","response":"success"},{"item":"json-pointer","response":"success"},{"item":"json-query","response":"success"},{"item":"json-rpc-random-id","response":"success"},{"item":"json-rpc-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"json-schema","response":"success"},{"item":"json-schema-compare","response":"success"},{"item":"json-schema-merge-allof","response":"success"},{"item":"json-schema-traverse","response":"success"},{"item":"json-server","response":"success"},{"item":"json-socket","response":"success"},{"item":"json-stable-stringify","response":"success"},{"item":"json-stream-stringify","response":"success"},{"item":"json-stringify-safe","response":"success"},{"item":"json-to-ast","response":"success"},{"item":"json2csv","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"json2md","response":"success"},{"item":"json2mq","response":"success"},{"item":"json3","response":"success"},{"item":"json5","response":"success"},{"item":"json8-patch","response":"success"},{"item":"json_ml","response":"success"},{"item":"jsonabc","response":"success"},{"item":"jsonapi-serializer","response":"success"},{"item":"jsoneditor","response":"success"},{"item":"jsoneditor-for-react","response":"success"},{"item":"jsoneditoronline","response":"success"},{"item":"jsonfile","response":"success"},{"item":"jsonic","response":"success"},{"item":"jsonld","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonminify","response":"success"},{"item":"jsonnet","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsonp","response":"success"},{"item":"jsonpack","response":"success"},{"item":"jsonpath","response":"success"},{"item":"jsonpointer","response":"success"},{"item":"jsonquery","response":"success"},{"item":"jsonrpc-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonstream","response":"success"},{"item":"jsontoxml","response":"success"},{"item":"jsonwebtoken","response":"success"},{"item":"jsonwebtoken-promisified","response":"success"},{"item":"jspath","response":"success"},{"item":"jspdf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsprintmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsqrcode","response":"success"},{"item":"jsqubits","response":"success"},{"item":"jsreport-chrome-pdf","response":"success"},{"item":"jsreport-core","response":"success"},{"item":"jsreport-html-embedded-in-docx","response":"success"},{"item":"jsreport-html-to-xlsx","response":"success"},{"item":"jsreport-jsrender","response":"success"},{"item":"jsreport-phantom-pdf","response":"success"},{"item":"jsreport-xlsx","response":"success"},{"item":"jsrp","response":"success"},{"item":"jsrsasign","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jssha","response":"success"},{"item":"jssip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsspec__jsspec","response":"success"},{"item":"jstimezonedetect","response":"success"},{"item":"jstorage","response":"success"},{"item":"jstree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsuite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsum","response":"success"},{"item":"jsuri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"jsurl","response":"success"},{"item":"jsx-chai","response":"success"},{"item":"jszip","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"jug","response":"success"},{"item":"jui","response":"success"},{"item":"jui-core","response":"success"},{"item":"jui-grid","response":"success"},{"item":"jump.js","response":"success"},{"item":"just-clone","response":"success"},{"item":"just-debounce-it","response":"success"},{"item":"just-extend","response":"success"},{"item":"just-map-values","response":"success"},{"item":"just-pick","response":"success"},{"item":"just-safe-get","response":"success"},{"item":"just-safe-set","response":"success"},{"item":"just-snake-case","response":"success"},{"item":"just-throttle","response":"success"},{"item":"jweixin","response":"success"},{"item":"jwk-to-pem","response":"success"},{"item":"jwplayer","response":"success"},{"item":"jws","response":"success"},{"item":"jwt-client","response":"success"},{"item":"jwt-decode","response":"success"},{"item":"jwt-express","response":"success"},{"item":"jwt-simple","response":"success"},{"item":"jwt-then","response":"success"},{"item":"jxon","response":"success"},{"item":"k6","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\n\n../DefinitelyTyped/types/k6/global.d.ts(53,9): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\nnode_modules/typescript/lib/lib.dom.d.ts(19729,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n"},{"item":"kafka-node-avro","response":"success"},{"item":"kamailio-kemi","response":"success"},{"item":"kap-plugin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"karma","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"karma-brief-reporter","response":"success"},{"item":"karma-browserify","response":"success"},{"item":"karma-browserstack-launcher","response":"success"},{"item":"karma-chai","response":"success"},{"item":"karma-chai-sinon","response":"success"},{"item":"karma-chrome-launcher","response":"success"},{"item":"karma-coverage","response":"success"},{"item":"karma-coverage-istanbul-reporter","response":"success"},{"item":"karma-detect-browsers","response":"success"},{"item":"karma-env-preprocessor","response":"success"},{"item":"karma-firefox-launcher","response":"success"},{"item":"karma-fixture","response":"success"},{"item":"karma-html-detailed-reporter","response":"success"},{"item":"karma-ie-launcher","response":"success"},{"item":"karma-jasmine","response":"success"},{"item":"karma-jasmine-html-reporter","response":"success"},{"item":"karma-jasmine-spec-tags","response":"success"},{"item":"karma-jsdom-launcher","response":"success"},{"item":"karma-json-preprocessor","response":"success"},{"item":"karma-json-to-file-reporter","response":"success"},{"item":"karma-junit-reporter","response":"success"},{"item":"karma-material-reporter","response":"success"},{"item":"karma-mocha","response":"success"},{"item":"karma-mocha-reporter","response":"success"},{"item":"karma-parallel","response":"success"},{"item":"karma-remap-coverage","response":"success"},{"item":"karma-snapshot","response":"success"},{"item":"karma-spec-reporter","response":"success"},{"item":"karma-summary-reporter","response":"success"},{"item":"karma-webpack","response":"success"},{"item":"katex","response":"success"},{"item":"kcors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"kd-tree-javascript","response":"success"},{"item":"kdbush","response":"success"},{"item":"kdbxweb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"keen-tracking","response":"success"},{"item":"kefir","response":"success"},{"item":"kendo-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"kerberos","response":"success"},{"item":"keyboardjs","response":"success"},{"item":"keycloak-connect","response":"success"},{"item":"keygrip","response":"success"},{"item":"keymaster","response":"success"},{"item":"keymirror","response":"success"},{"item":"keypress.js","response":"success"},{"item":"keystonejs__adapter-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"keystonejs__adapter-mongoose","response":"success"},{"item":"keystonejs__apollo-helpers","response":"success"},{"item":"keystonejs__app-admin-ui","response":"success"},{"item":"keystonejs__app-graphql","response":"success"},{"item":"keystonejs__app-next","response":"success"},{"item":"keystonejs__app-nuxt","response":"success"},{"item":"keystonejs__app-static","response":"success"},{"item":"keystonejs__auth-passport","response":"success"},{"item":"keystonejs__auth-password","response":"success"},{"item":"keystonejs__email","response":"success"},{"item":"keystonejs__fields","response":"success"},{"item":"keystonejs__file-adapters","response":"success"},{"item":"keystonejs__keystone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"keystonejs__list-plugins","response":"success"},{"item":"keystonejs__logger","response":"success"},{"item":"keystonejs__oembed-adapters","response":"success"},{"item":"keystonejs__session","response":"success"},{"item":"keysym","response":"success"},{"item":"keyv","response":"success"},{"item":"keyv__mongo","response":"success"},{"item":"keyv__mysql","response":"success"},{"item":"keyv__postgres","response":"success"},{"item":"keyv__redis","response":"success"},{"item":"keyv__sqlite","response":"success"},{"item":"kii-cloud-sdk","response":"success"},{"item":"kik-browser","response":"success"},{"item":"kind-of","response":"success"},{"item":"kineticjs","response":"success"},{"item":"kissfft-js","response":"success"},{"item":"kiwicom__orbit-design-tokens","response":"success"},{"item":"klaw","response":"success"},{"item":"klaw-sync","response":"success"},{"item":"kms-json","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"knex-db-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knex-postgis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knockback","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'kind' of undefined\n"},{"item":"knockout","response":"success"},{"item":"knockout-amd-helpers","response":"success"},{"item":"knockout-postbox","response":"success"},{"item":"knockout-secure-binding","response":"success"},{"item":"knockout-transformations","response":"success"},{"item":"knockout.deferred.updates","response":"success"},{"item":"knockout.editables","response":"success"},{"item":"knockout.es5","response":"success"},{"item":"knockout.kogrid","response":"success"},{"item":"knockout.mapper","response":"success"},{"item":"knockout.mapping","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"knockout.projections","response":"success"},{"item":"knockout.punches","response":"success"},{"item":"knockout.rx","response":"success"},{"item":"knockout.validation","response":"success"},{"item":"knockout.viewmodel","response":"success"},{"item":"knockstrap","response":"success"},{"item":"knuddels-userapps-api","response":"success"},{"item":"knuth-shuffle","response":"success"},{"item":"ko.plus","response":"success"},{"item":"koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-basic-auth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bodyparser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bouncer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bunyan-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cache-control","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-conditional-get","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-csrf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-dec-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"koa-docs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ejs","response":"success"},{"item":"koa-etag","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-favicon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-generic-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-graphql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-helmet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-json-error","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log4","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger-winston","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-morgan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-mount","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-passport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"koa-pino-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-qs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit-lru","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-redis","response":"success"},{"item":"koa-redis-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-response-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-route","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"koa-send","response":"success"},{"item":"koa-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-session-minimal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-sslify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-views","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-webpack","response":"success"},{"item":"koa-websocket","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-xml-body","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-session-redis","response":"success"},{"item":"koa__cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"koji-tools","response":"success"},{"item":"kolite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/kolite"},{"item":"kompression","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"konami.js","response":"success"},{"item":"kos-core","response":"success"},{"item":"kraken-js","response":"success"},{"item":"kramed","response":"success"},{"item":"kss","response":"success"},{"item":"kue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"kue-ui-client","response":"success"},{"item":"kurento-client","response":"success"},{"item":"kurento-utils","response":"success"},{"item":"kuromoji","response":"success"},{"item":"kythe","response":"success"},{"item":"lab","response":"success"},{"item":"labeled-stream-splicer","response":"success"},{"item":"lambda-log","response":"success"},{"item":"lambda-tester","response":"success"},{"item":"lambda-wrapper","response":"success"},{"item":"lang.js","response":"success"},{"item":"langmap","response":"success"},{"item":"lasso","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"later","response":"success"},{"item":"latinize","response":"success"},{"item":"latlon-geohash","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"launchpad","response":"success"},{"item":"layui-layer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"layzr.js","response":"success"},{"item":"lazy-brush","response":"success"},{"item":"lazy-property","response":"success"},{"item":"lazy.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lazypipe","response":"success"},{"item":"ldap-filters","response":"success"},{"item":"ldapjs","response":"success"},{"item":"ldapjs-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leadfoot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"leaflet-areaselect","response":"success"},{"item":"leaflet-curve","response":"success"},{"item":"leaflet-deepzoom","response":"success"},{"item":"leaflet-draw","response":"success"},{"item":"leaflet-editable","response":"success"},{"item":"leaflet-fullscreen","response":"success"},{"item":"leaflet-geocoder-mapzen","response":"success"},{"item":"leaflet-geosearch","response":"success"},{"item":"leaflet-gpx","response":"success"},{"item":"leaflet-groupedlayercontrol","response":"success"},{"item":"leaflet-imageoverlay-rotated","response":"success"},{"item":"leaflet-label","response":"success"},{"item":"leaflet-loading","response":"success"},{"item":"leaflet-mouse-position","response":"success"},{"item":"leaflet-polylinedecorator","response":"success"},{"item":"leaflet-providers","response":"success"},{"item":"leaflet-rastercoords","response":"success"},{"item":"leaflet-responsive-popup","response":"success"},{"item":"leaflet-rotatedmarker","response":"success"},{"item":"leaflet-routing-machine","response":"success"},{"item":"leaflet.awesome-markers","response":"success"},{"item":"leaflet.featuregroup.subgroup","response":"success"},{"item":"leaflet.fullscreen","response":"success"},{"item":"leaflet.gridlayer.googlemutant","response":"success"},{"item":"leaflet.heat","response":"success"},{"item":"leaflet.icon.glyph","response":"success"},{"item":"leaflet.locatecontrol","response":"success"},{"item":"leaflet.markercluster","response":"success"},{"item":"leaflet.markercluster.layersupport","response":"success"},{"item":"leaflet.pancontrol","response":"success"},{"item":"leaflet.pm","response":"success"},{"item":"leaflet.polylinemeasure","response":"success"},{"item":"leaflet.utm","response":"success"},{"item":"leakage","response":"success"},{"item":"leapmotionts","response":"success"},{"item":"ledgerhq__hw-transport","response":"success"},{"item":"ledgerhq__hw-transport-node-hid","response":"success"},{"item":"ledgerhq__hw-transport-u2f","response":"success"},{"item":"ledgerhq__hw-transport-webusb","response":"success"},{"item":"legal-eagle","response":"success"},{"item":"lerna-alias","response":"success"},{"item":"lerna-get-packages","response":"success"},{"item":"less","response":"success"},{"item":"less-middleware","response":"success"},{"item":"less2sass","response":"success"},{"item":"lestate","response":"success"},{"item":"level-codec","response":"success"},{"item":"level-js","response":"success"},{"item":"level-sublevel","response":"success"},{"item":"level-ttl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"leveldown","response":"success"},{"item":"levelup","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"levenshtein","response":"success"},{"item":"lexicographic-integer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"libnpmsearch","response":"success"},{"item":"libpq","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"libqp","response":"success"},{"item":"librato-node","response":"success"},{"item":"libsodium-wrappers","response":"success"},{"item":"libsodium-wrappers-sumo","response":"success"},{"item":"libxmljs","response":"success"},{"item":"libxslt","response":"success"},{"item":"license-checker","response":"success"},{"item":"license-checker-webpack-plugin","response":"success"},{"item":"lifeomic__axios-fetch","response":"success"},{"item":"liftoff","response":"success"},{"item":"light-sdk","response":"success"},{"item":"lightpick","response":"success"},{"item":"lightship","response":"success"},{"item":"lil-uri","response":"success"},{"item":"lil-uuid","response":"success"},{"item":"lime-js","response":"success"},{"item":"line-by-line","response":"success"},{"item":"line-column","response":"success"},{"item":"line-reader","response":"success"},{"item":"linear-gradient","response":"success"},{"item":"lingui__core","response":"success"},{"item":"lingui__macro","response":"success"},{"item":"lingui__react","response":"success"},{"item":"linkify-it","response":"success"},{"item":"linkifyjs","response":"success"},{"item":"list-git-remotes","response":"success"},{"item":"list-stream","response":"success"},{"item":"list.js","response":"success"},{"item":"listr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"little-loader","response":"success"},{"item":"lls","response":"success"},{"item":"load-google-maps-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"loadable__component","response":"success"},{"item":"loadable__server","response":"success"},{"item":"loadable__webpack-plugin","response":"success"},{"item":"loader-runner","response":"success"},{"item":"loader-utils","response":"success"},{"item":"loadicons","response":"success"},{"item":"loadjs","response":"success"},{"item":"loadware","response":"success"},{"item":"lobibox","response":"success"},{"item":"local-dynamo","response":"success"},{"item":"local-storage","response":"success"},{"item":"locale","response":"success"},{"item":"localized-countries","response":"success"},{"item":"localizejs-library","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"localtunnel","response":"success"},{"item":"lockfile","response":"success"},{"item":"lockr","response":"success"},{"item":"locks","response":"success"},{"item":"locutus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lodash","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash-deep","response":"success"},{"item":"lodash-es","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n"},{"item":"lodash-webpack-plugin","response":"success"},{"item":"lodash.add","response":"success"},{"item":"lodash.after","response":"success"},{"item":"lodash.ary","response":"success"},{"item":"lodash.assign","response":"success"},{"item":"lodash.assignin","response":"success"},{"item":"lodash.assigninwith","response":"success"},{"item":"lodash.assignwith","response":"success"},{"item":"lodash.at","response":"success"},{"item":"lodash.attempt","response":"success"},{"item":"lodash.before","response":"success"},{"item":"lodash.bind","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.bindall","response":"success"},{"item":"lodash.bindkey","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.camelcase","response":"success"},{"item":"lodash.capitalize","response":"success"},{"item":"lodash.castarray","response":"success"},{"item":"lodash.ceil","response":"success"},{"item":"lodash.chunk","response":"success"},{"item":"lodash.clamp","response":"success"},{"item":"lodash.clone","response":"success"},{"item":"lodash.clonedeep","response":"success"},{"item":"lodash.clonedeepwith","response":"success"},{"item":"lodash.clonewith","response":"success"},{"item":"lodash.compact","response":"success"},{"item":"lodash.concat","response":"success"},{"item":"lodash.cond","response":"success"},{"item":"lodash.constant","response":"success"},{"item":"lodash.countby","response":"success"},{"item":"lodash.create","response":"success"},{"item":"lodash.curry","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.curryright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.debounce","response":"success"},{"item":"lodash.deburr","response":"success"},{"item":"lodash.defaults","response":"success"},{"item":"lodash.defaultsdeep","response":"success"},{"item":"lodash.defer","response":"success"},{"item":"lodash.delay","response":"success"},{"item":"lodash.difference","response":"success"},{"item":"lodash.differenceby","response":"success"},{"item":"lodash.differencewith","response":"success"},{"item":"lodash.divide","response":"success"},{"item":"lodash.drop","response":"success"},{"item":"lodash.dropright","response":"success"},{"item":"lodash.droprightwhile","response":"success"},{"item":"lodash.dropwhile","response":"success"},{"item":"lodash.endswith","response":"success"},{"item":"lodash.eq","response":"success"},{"item":"lodash.escape","response":"success"},{"item":"lodash.escaperegexp","response":"success"},{"item":"lodash.every","response":"success"},{"item":"lodash.fill","response":"success"},{"item":"lodash.filter","response":"success"},{"item":"lodash.find","response":"success"},{"item":"lodash.findindex","response":"success"},{"item":"lodash.findkey","response":"success"},{"item":"lodash.findlast","response":"success"},{"item":"lodash.findlastindex","response":"success"},{"item":"lodash.findlastkey","response":"success"},{"item":"lodash.first","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.flatmap","response":"success"},{"item":"lodash.flatmapdeep","response":"success"},{"item":"lodash.flatmapdepth","response":"success"},{"item":"lodash.flatten","response":"success"},{"item":"lodash.flattendeep","response":"success"},{"item":"lodash.flattendepth","response":"success"},{"item":"lodash.flip","response":"success"},{"item":"lodash.floor","response":"success"},{"item":"lodash.flow","response":"success"},{"item":"lodash.flowright","response":"success"},{"item":"lodash.foreach","response":"success"},{"item":"lodash.foreachright","response":"success"},{"item":"lodash.forin","response":"success"},{"item":"lodash.forinright","response":"success"},{"item":"lodash.forown","response":"success"},{"item":"lodash.forownright","response":"success"},{"item":"lodash.frompairs","response":"success"},{"item":"lodash.functions","response":"success"},{"item":"lodash.functionsin","response":"success"},{"item":"lodash.get","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash.groupby","response":"success"},{"item":"lodash.gt","response":"success"},{"item":"lodash.gte","response":"success"},{"item":"lodash.has","response":"success"},{"item":"lodash.hasin","response":"success"},{"item":"lodash.head","response":"success"},{"item":"lodash.identity","response":"success"},{"item":"lodash.includes","response":"success"},{"item":"lodash.indexof","response":"success"},{"item":"lodash.initial","response":"success"},{"item":"lodash.inrange","response":"success"},{"item":"lodash.intersection","response":"success"},{"item":"lodash.intersectionby","response":"success"},{"item":"lodash.intersectionwith","response":"success"},{"item":"lodash.invert","response":"success"},{"item":"lodash.invertby","response":"success"},{"item":"lodash.invoke","response":"success"},{"item":"lodash.invokemap","response":"success"},{"item":"lodash.isarguments","response":"success"},{"item":"lodash.isarray","response":"success"},{"item":"lodash.isarraybuffer","response":"success"},{"item":"lodash.isarraylike","response":"success"},{"item":"lodash.isarraylikeobject","response":"success"},{"item":"lodash.isboolean","response":"success"},{"item":"lodash.isbuffer","response":"success"},{"item":"lodash.isdate","response":"success"},{"item":"lodash.iselement","response":"success"},{"item":"lodash.isempty","response":"success"},{"item":"lodash.isequal","response":"success"},{"item":"lodash.isequalwith","response":"success"},{"item":"lodash.iserror","response":"success"},{"item":"lodash.isfinite","response":"success"},{"item":"lodash.isfunction","response":"success"},{"item":"lodash.isinteger","response":"success"},{"item":"lodash.islength","response":"success"},{"item":"lodash.ismap","response":"success"},{"item":"lodash.ismatch","response":"success"},{"item":"lodash.ismatchwith","response":"success"},{"item":"lodash.isnan","response":"success"},{"item":"lodash.isnative","response":"success"},{"item":"lodash.isnil","response":"success"},{"item":"lodash.isnull","response":"success"},{"item":"lodash.isnumber","response":"success"},{"item":"lodash.isobject","response":"success"},{"item":"lodash.isobjectlike","response":"success"},{"item":"lodash.isplainobject","response":"success"},{"item":"lodash.isregexp","response":"success"},{"item":"lodash.issafeinteger","response":"success"},{"item":"lodash.isset","response":"success"},{"item":"lodash.isstring","response":"success"},{"item":"lodash.issymbol","response":"success"},{"item":"lodash.istypedarray","response":"success"},{"item":"lodash.isundefined","response":"success"},{"item":"lodash.isweakmap","response":"success"},{"item":"lodash.isweakset","response":"success"},{"item":"lodash.iteratee","response":"success"},{"item":"lodash.join","response":"success"},{"item":"lodash.kebabcase","response":"success"},{"item":"lodash.keyby","response":"success"},{"item":"lodash.keys","response":"success"},{"item":"lodash.keysin","response":"success"},{"item":"lodash.last","response":"success"},{"item":"lodash.lastindexof","response":"success"},{"item":"lodash.lowercase","response":"success"},{"item":"lodash.lowerfirst","response":"success"},{"item":"lodash.lt","response":"success"},{"item":"lodash.lte","response":"success"},{"item":"lodash.mapkeys","response":"success"},{"item":"lodash.mapvalues","response":"success"},{"item":"lodash.matches","response":"success"},{"item":"lodash.matchesproperty","response":"success"},{"item":"lodash.max","response":"success"},{"item":"lodash.maxby","response":"success"},{"item":"lodash.mean","response":"success"},{"item":"lodash.meanby","response":"success"},{"item":"lodash.memoize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.merge","response":"success"},{"item":"lodash.mergewith","response":"success"},{"item":"lodash.method","response":"success"},{"item":"lodash.methodof","response":"success"},{"item":"lodash.min","response":"success"},{"item":"lodash.minby","response":"success"},{"item":"lodash.mixin","response":"success"},{"item":"lodash.multiply","response":"success"},{"item":"lodash.negate","response":"success"},{"item":"lodash.noop","response":"success"},{"item":"lodash.now","response":"success"},{"item":"lodash.nth","response":"success"},{"item":"lodash.ntharg","response":"success"},{"item":"lodash.omit","response":"success"},{"item":"lodash.omitby","response":"success"},{"item":"lodash.once","response":"success"},{"item":"lodash.orderby","response":"success"},{"item":"lodash.over","response":"success"},{"item":"lodash.overargs","response":"success"},{"item":"lodash.overevery","response":"success"},{"item":"lodash.oversome","response":"success"},{"item":"lodash.pad","response":"success"},{"item":"lodash.padend","response":"success"},{"item":"lodash.padstart","response":"success"},{"item":"lodash.parseint","response":"success"},{"item":"lodash.partial","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partialright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partition","response":"success"},{"item":"lodash.pick","response":"success"},{"item":"lodash.pickby","response":"success"},{"item":"lodash.property","response":"success"},{"item":"lodash.propertyof","response":"success"},{"item":"lodash.pull","response":"success"},{"item":"lodash.pullall","response":"success"},{"item":"lodash.pullallby","response":"success"},{"item":"lodash.pullallwith","response":"success"},{"item":"lodash.pullat","response":"success"},{"item":"lodash.random","response":"success"},{"item":"lodash.range","response":"success"},{"item":"lodash.rangeright","response":"success"},{"item":"lodash.rearg","response":"success"},{"item":"lodash.reduce","response":"success"},{"item":"lodash.reduceright","response":"success"},{"item":"lodash.reject","response":"success"},{"item":"lodash.remove","response":"success"},{"item":"lodash.repeat","response":"success"},{"item":"lodash.replace","response":"success"},{"item":"lodash.rest","response":"success"},{"item":"lodash.result","response":"success"},{"item":"lodash.reverse","response":"success"},{"item":"lodash.round","response":"success"},{"item":"lodash.sample","response":"success"},{"item":"lodash.samplesize","response":"success"},{"item":"lodash.set","response":"success"},{"item":"lodash.setwith","response":"success"},{"item":"lodash.shuffle","response":"success"},{"item":"lodash.size","response":"success"},{"item":"lodash.slice","response":"success"},{"item":"lodash.snakecase","response":"success"},{"item":"lodash.some","response":"success"},{"item":"lodash.sortby","response":"success"},{"item":"lodash.sortedindex","response":"success"},{"item":"lodash.sortedindexby","response":"success"},{"item":"lodash.sortedindexof","response":"success"},{"item":"lodash.sortedlastindex","response":"success"},{"item":"lodash.sortedlastindexby","response":"success"},{"item":"lodash.sortedlastindexof","response":"success"},{"item":"lodash.sorteduniq","response":"success"},{"item":"lodash.sorteduniqby","response":"success"},{"item":"lodash.split","response":"success"},{"item":"lodash.spread","response":"success"},{"item":"lodash.startcase","response":"success"},{"item":"lodash.startswith","response":"success"},{"item":"lodash.stubfalse","response":"success"},{"item":"lodash.stubtrue","response":"success"},{"item":"lodash.subtract","response":"success"},{"item":"lodash.sum","response":"success"},{"item":"lodash.sumby","response":"success"},{"item":"lodash.tail","response":"success"},{"item":"lodash.take","response":"success"},{"item":"lodash.takeright","response":"success"},{"item":"lodash.takerightwhile","response":"success"},{"item":"lodash.takewhile","response":"success"},{"item":"lodash.template","response":"success"},{"item":"lodash.throttle","response":"success"},{"item":"lodash.times","response":"success"},{"item":"lodash.toarray","response":"success"},{"item":"lodash.tofinite","response":"success"},{"item":"lodash.tointeger","response":"success"},{"item":"lodash.tolength","response":"success"},{"item":"lodash.tolower","response":"success"},{"item":"lodash.tonumber","response":"success"},{"item":"lodash.topairs","response":"success"},{"item":"lodash.topairsin","response":"success"},{"item":"lodash.topath","response":"success"},{"item":"lodash.toplainobject","response":"success"},{"item":"lodash.tosafeinteger","response":"success"},{"item":"lodash.tostring","response":"success"},{"item":"lodash.toupper","response":"success"},{"item":"lodash.transform","response":"success"},{"item":"lodash.trim","response":"success"},{"item":"lodash.trimend","response":"success"},{"item":"lodash.trimstart","response":"success"},{"item":"lodash.truncate","response":"success"},{"item":"lodash.unary","response":"success"},{"item":"lodash.unescape","response":"success"},{"item":"lodash.union","response":"success"},{"item":"lodash.unionby","response":"success"},{"item":"lodash.unionwith","response":"success"},{"item":"lodash.uniq","response":"success"},{"item":"lodash.uniqby","response":"success"},{"item":"lodash.uniqueid","response":"success"},{"item":"lodash.uniqwith","response":"success"},{"item":"lodash.unset","response":"success"},{"item":"lodash.unzip","response":"success"},{"item":"lodash.unzipwith","response":"success"},{"item":"lodash.update","response":"success"},{"item":"lodash.updatewith","response":"success"},{"item":"lodash.uppercase","response":"success"},{"item":"lodash.upperfirst","response":"success"},{"item":"lodash.values","response":"success"},{"item":"lodash.valuesin","response":"success"},{"item":"lodash.without","response":"success"},{"item":"lodash.words","response":"success"},{"item":"lodash.wrap","response":"success"},{"item":"lodash.xor","response":"success"},{"item":"lodash.xorby","response":"success"},{"item":"lodash.xorwith","response":"success"},{"item":"lodash.zip","response":"success"},{"item":"lodash.zipobject","response":"success"},{"item":"lodash.zipobjectdeep","response":"success"},{"item":"lodash.zipwith","response":"success"},{"item":"log-process-errors","response":"success"},{"item":"logat","response":"success"},{"item":"logfmt","response":"success"},{"item":"logg","response":"success"},{"item":"logger","response":"success"},{"item":"loggly","response":"success"},{"item":"login-with-amazon-sdk-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"logrocket-react","response":"success"},{"item":"logrotate-stream","response":"success"},{"item":"lokijs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"lolex","response":"success"},{"item":"long","response":"success"},{"item":"loopback","response":"success"},{"item":"loopback-boot","response":"success"},{"item":"loopbench","response":"success"},{"item":"looper","response":"success"},{"item":"lory.js","response":"success"},{"item":"lossless-json","response":"success"},{"item":"lovefield","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lowdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"lowlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lozad","response":"success"},{"item":"lru-cache","response":"success"},{"item":"lscache","response":"success"},{"item":"lscache","response":"success"},{"item":"ltx","response":"success"},{"item":"luaparse","response":"success"},{"item":"lucene","response":"success"},{"item":"lunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"lusca","response":"success"},{"item":"luxon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lwip","response":"success"},{"item":"lyric-parser","response":"success"},{"item":"lyricist","response":"success"},{"item":"lz-string","response":"success"},{"item":"lzma-native","response":"success"},{"item":"macaca-circular-json","response":"success"},{"item":"macrotask","response":"success"},{"item":"magic-number","response":"success"},{"item":"magicsuggest","response":"success"},{"item":"magnet-uri","response":"success"},{"item":"mailcheck","response":"success"},{"item":"maildev","response":"success"},{"item":"mailgen","response":"success"},{"item":"mailgun-js","response":"success"},{"item":"mailparser","response":"success"},{"item":"main-bower-files","response":"success"},{"item":"mainloop.js","response":"success"},{"item":"maker.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"makeup-expander","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"makeup-floating-label","response":"success"},{"item":"makeup-keyboard-trap","response":"success"},{"item":"makeup-prevent-scroll-keys","response":"success"},{"item":"makeup-screenreader-trap","response":"success"},{"item":"mandrill-api","response":"success"},{"item":"mangopay2-nodejs-sdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"map-to-obj","response":"success"},{"item":"mapbox","response":"success"},{"item":"mapbox-gl","response":"success"},{"item":"mapbox-gl-leaflet","response":"success"},{"item":"mapbox__geo-viewport","response":"success"},{"item":"mapbox__geojson-area","response":"success"},{"item":"mapbox__mapbox-sdk","response":"success"},{"item":"mapbox__polyline","response":"success"},{"item":"mapbox__s3urls","response":"success"},{"item":"mapbox__shelf-pack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"mapbox__sphericalmercator","response":"success"},{"item":"mapbox__tile-cover","response":"success"},{"item":"mapnik","response":"success"},{"item":"mapsjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mariasql","response":"success"},{"item":"mark.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"markdown-draft-js","response":"success"},{"item":"markdown-it","response":"success"},{"item":"markdown-it-anchor","response":"success"},{"item":"markdown-it-container","response":"success"},{"item":"markdown-it-lazy-headers","response":"success"},{"item":"markdown-magic","response":"success"},{"item":"markdown-pdf","response":"success"},{"item":"markdown-table","response":"success"},{"item":"markdown-to-jsx","response":"success"},{"item":"markdownlint","response":"success"},{"item":"marked","response":"success"},{"item":"marked-terminal","response":"success"},{"item":"markedjs__html-differ","response":"success"},{"item":"marker-animate-unobtrusive","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"markitup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"marko","response":"success"},{"item":"maskedinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"masonry-layout","response":"success"},{"item":"massive","response":"success"},{"item":"match-media-mock","response":"success"},{"item":"match-sorter","response":"success"},{"item":"matchdep","response":"success"},{"item":"material-design-lite","response":"success"},{"item":"material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"material-ui-datatables","response":"success"},{"item":"material-ui-pagination","response":"success"},{"item":"material__animation","response":"success"},{"item":"material__auto-init","response":"success"},{"item":"material__base","response":"success"},{"item":"material__checkbox","response":"success"},{"item":"material__chips","response":"success"},{"item":"material__dialog","response":"success"},{"item":"material__dom","response":"success"},{"item":"material__drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__floating-label","response":"success"},{"item":"material__form-field","response":"success"},{"item":"material__grid-list","response":"success"},{"item":"material__icon-toggle","response":"success"},{"item":"material__line-ripple","response":"success"},{"item":"material__linear-progress","response":"success"},{"item":"material__list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__notched-outline","response":"success"},{"item":"material__radio","response":"success"},{"item":"material__ripple","response":"success"},{"item":"material__select","response":"success"},{"item":"material__selection-control","response":"success"},{"item":"material__slider","response":"success"},{"item":"material__snackbar","response":"success"},{"item":"material__tab","response":"success"},{"item":"material__tabs","response":"success"},{"item":"material__textfield","response":"success"},{"item":"material__toolbar","response":"success"},{"item":"material__top-app-bar","response":"success"},{"item":"materialize-css","response":"success"},{"item":"math-expression-evaluator","response":"success"},{"item":"math-random","response":"success"},{"item":"math-sign","response":"success"},{"item":"math-trunc","response":"success"},{"item":"math3d","response":"success"},{"item":"mathjax","response":"success"},{"item":"mathjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"matrix-appservice-bridge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"matrix-js-sdk","response":"success"},{"item":"matter-js","response":"success"},{"item":"mcrypt","response":"success"},{"item":"mcustomscrollbar","response":"success"},{"item":"md5","response":"success"},{"item":"md5-file","response":"success"},{"item":"mdast","response":"success"},{"item":"mdns","response":"success"},{"item":"mdurl","response":"success"},{"item":"mdx-js__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"media-typer","response":"success"},{"item":"medium-editor","response":"success"},{"item":"megajs","response":"success"},{"item":"mem-cache","response":"success"},{"item":"mem-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mem-fs-editor","response":"success"},{"item":"memcached","response":"success"},{"item":"memdown","response":"success"},{"item":"memjs","response":"success"},{"item":"memoizee","response":"success"},{"item":"memory-cache","response":"success"},{"item":"memory-fs","response":"success"},{"item":"memory-pager","response":"success"},{"item":"memorystream","response":"success"},{"item":"memwatch-next","response":"success"},{"item":"meow","response":"success"},{"item":"merge-descriptors","response":"success"},{"item":"merge-env","response":"success"},{"item":"merge-images","response":"success"},{"item":"merge-img","response":"success"},{"item":"merge-objects","response":"success"},{"item":"merge-stream","response":"success"},{"item":"merge2","response":"success"},{"item":"mergerino","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"merkle","response":"success"},{"item":"mermaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mersenne-twister","response":"success"},{"item":"meshblu","response":"success"},{"item":"mess","response":"success"},{"item":"messenger","response":"success"},{"item":"metalsmith","response":"success"},{"item":"meteor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/meteor"},{"item":"meteor-accounts-phone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-astronomy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-collection-hooks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"meteor-jboulhous-dev","response":"success"},{"item":"meteor-persistent-session","response":"success"},{"item":"meteor-prime8consulting-oauth2","response":"success"},{"item":"meteor-publish-composite","response":"success"},{"item":"meteor-roles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-universe-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"method-override","response":"success"},{"item":"methods","response":"success"},{"item":"metric-suffix","response":"success"},{"item":"meyda","response":"success"},{"item":"mfiles","response":"success"},{"item":"micro","response":"success"},{"item":"micro-cors","response":"success"},{"item":"micro-events","response":"success"},{"item":"micromatch","response":"success"},{"item":"micromodal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microrouter","response":"success"},{"item":"microservice-utilities","response":"success"},{"item":"microsoft-ajax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-graph","response":"success"},{"item":"microsoft-live-connect","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-sdk-soap","response":"success"},{"item":"microsoft__typescript-etw","response":"success"},{"item":"microsoftteams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microtime","response":"success"},{"item":"migrate-mongo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"milkcocoa","response":"success"},{"item":"millisecond","response":"success"},{"item":"milliseconds","response":"success"},{"item":"mime","response":"success"},{"item":"mime-db","response":"success"},{"item":"mime-types","response":"success"},{"item":"mimos","response":"success"},{"item":"min-document","response":"success"},{"item":"min-indent","response":"success"},{"item":"mina","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"minapp-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/minapp-env/index.d.ts(14,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n../DefinitelyTyped/types/minapp-env/index.d.ts(90,3): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(292,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1088,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1302,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(4737,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5543,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Symbol\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5587,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Map\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5591,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakMap\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5595,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Set\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5599,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakSet\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5618,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"GeneratorFunction\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5626,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Promise\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5630,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.species]' must be of type 'PromiseConstructor', but here has type 'Function'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5682,3): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\nnode_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts(225,14): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n"},{"item":"mini-css-extract-plugin","response":"success"},{"item":"mini-html-webpack-plugin","response":"success"},{"item":"minilog","response":"success"},{"item":"minimal-bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"minimal-request-promise","response":"success"},{"item":"minimalistic-assert","response":"success"},{"item":"minimatch","response":"success"},{"item":"minimist","response":"success"},{"item":"minimist-options","response":"success"},{"item":"minio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"minipass","response":"success"},{"item":"miniprogram-wxs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\n\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(28,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(96,5): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(368,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(493,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1174,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1179,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1333,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1397,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(42,15): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(56,15): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n"},{"item":"mirrorx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mithril","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mithril-global","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mitm","response":"success"},{"item":"mitsobox","response":"success"},{"item":"mixpanel","response":"success"},{"item":"mixpanel-browser","response":"success"},{"item":"mixto","response":"success"},{"item":"mjml","response":"success"},{"item":"mjml-react","response":"success"},{"item":"mkcert","response":"success"},{"item":"mkdirp","response":"success"},{"item":"mkpath","response":"success"},{"item":"ml-levenberg-marquardt","response":"success"},{"item":"mmmagic","response":"success"},{"item":"mobile-messaging-cordova","response":"success"},{"item":"mobx-apollo","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'find' of undefined\n"},{"item":"mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"mocha-each","response":"success"},{"item":"mocha-phantomjs","response":"success"},{"item":"mocha-prepare","response":"success"},{"item":"mocha-steps","response":"success"},{"item":"mocha-sugar-free","response":"success"},{"item":"mochaccino","response":"success"},{"item":"mock-aws-s3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mock-express-request","response":"success"},{"item":"mock-fs","response":"success"},{"item":"mock-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mock-raf","response":"success"},{"item":"mock-req-res","response":"success"},{"item":"mock-require","response":"success"},{"item":"mockdate","response":"success"},{"item":"mockery","response":"success"},{"item":"mockjs","response":"success"},{"item":"modernizr","response":"success"},{"item":"modesl","response":"success"},{"item":"modular-scale","response":"success"},{"item":"module-alias","response":"success"},{"item":"module-deps","response":"success"},{"item":"moji","response":"success"},{"item":"moment-business","response":"success"},{"item":"moment-business-time","response":"success"},{"item":"moment-duration-format","response":"success"},{"item":"moment-hijri","response":"success"},{"item":"moment-holiday","response":"success"},{"item":"moment-jalaali","response":"success"},{"item":"moment-precise-range-plugin","response":"success"},{"item":"moment-round","response":"success"},{"item":"moment-shortformat","response":"success"},{"item":"moment-strftime2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\n\n../DefinitelyTyped/types/moment-strftime2/index.d.ts(7,26): error TS2307: Cannot find module 'moment'.\n"},{"item":"moment-timezone","response":"success"},{"item":"money-math","response":"success"},{"item":"mongo-sanitize","response":"success"},{"item":"mongodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"mongodb-queue","response":"success"},{"item":"mongodb-uri","response":"success"},{"item":"mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-auto-increment","response":"success"},{"item":"mongoose-autopopulate","response":"success"},{"item":"mongoose-deep-populate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"mongoose-delete","response":"success"},{"item":"mongoose-geojson-schema","response":"success"},{"item":"mongoose-lean-virtuals","response":"success"},{"item":"mongoose-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate-v2","response":"success"},{"item":"mongoose-promise","response":"success"},{"item":"mongoose-seeder","response":"success"},{"item":"mongoose-sequence","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-simple-random","response":"success"},{"item":"mongoose-unique-validator","response":"success"},{"item":"mongorito","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"mongration","response":"success"},{"item":"moo","response":"success"},{"item":"moonjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n"},{"item":"morgan","response":"success"},{"item":"morris.js","response":"success"},{"item":"mosca","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"motion-scroll","response":"success"},{"item":"motor-hat","response":"success"},{"item":"mousetrap","response":"success"},{"item":"move-concurrently","response":"success"},{"item":"moveto","response":"success"},{"item":"moviedb","response":"success"},{"item":"moxios","response":"success"},{"item":"mozilla-readability","response":"success"},{"item":"mozjpeg","response":"success"},{"item":"mpromise","response":"success"},{"item":"mri","response":"success"},{"item":"mrz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"ms","response":"success"},{"item":"msgpack","response":"success"},{"item":"msgpack-lite","response":"success"},{"item":"msgpack5","response":"success"},{"item":"msnodesql","response":"success"},{"item":"mssql","response":"success"},{"item":"mta-h5-analysis","response":"success"},{"item":"mu2","response":"success"},{"item":"mui-datatables","response":"success"},{"item":"muibox","response":"success"},{"item":"muicss","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/muicss"},{"item":"multer","response":"success"},{"item":"multer-gridfs-storage","response":"success"},{"item":"multer-s3","response":"success"},{"item":"multi-progress","response":"success"},{"item":"multi-typeof","response":"success"},{"item":"multiaddr","response":"success"},{"item":"multibase","response":"success"},{"item":"multicodec","response":"success"},{"item":"multimap","response":"success"},{"item":"multiparty","response":"success"},{"item":"multipipe","response":"success"},{"item":"multiplexjs","response":"success"},{"item":"multireducer","response":"success"},{"item":"multisort","response":"success"},{"item":"multistream","response":"success"},{"item":"multivariate-normal","response":"success"},{"item":"multy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"mumath","response":"success"},{"item":"muri","response":"success"},{"item":"murmurhash","response":"success"},{"item":"murmurhash-js","response":"success"},{"item":"murmurhash3js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"musicmatch","response":"success"},{"item":"musicmetadata","response":"success"},{"item":"mustache","response":"success"},{"item":"mustache-express","response":"success"},{"item":"mutexify","response":"success"},{"item":"mv","response":"success"},{"item":"mysql","response":"success"},{"item":"mysql-import","response":"success"},{"item":"mz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"n-readlines","response":"success"},{"item":"n3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"naja","response":"success"},{"item":"named-regexp-groups","response":"success"},{"item":"named-routes","response":"success"},{"item":"nano-equal","response":"success"},{"item":"nanoajax","response":"success"},{"item":"nanoassert","response":"success"},{"item":"nanoevents","response":"success"},{"item":"nanographql","response":"success"},{"item":"nanoid","response":"success"},{"item":"nanomsg","response":"success"},{"item":"nanoscroller","response":"success"},{"item":"nanotimer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"nanp","response":"success"},{"item":"native-toast","response":"success"},{"item":"natural","response":"success"},{"item":"natural-compare","response":"success"},{"item":"natural-compare-lite","response":"success"},{"item":"natural-sort","response":"success"},{"item":"naudiodon","response":"success"},{"item":"naver-whale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navermaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navigo","response":"success"},{"item":"ncom","response":"success"},{"item":"nconf","response":"success"},{"item":"ncp","response":"success"},{"item":"ndarray","response":"success"},{"item":"ndjson","response":"success"},{"item":"ndn-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"nearley","response":"success"},{"item":"neat-csv","response":"success"},{"item":"nedb","response":"success"},{"item":"nedb-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"needle","response":"success"},{"item":"negotiator","response":"success"},{"item":"neo4j","response":"success"},{"item":"nes","response":"success"},{"item":"nestdb","response":"success"},{"item":"nested-error-stacks","response":"success"},{"item":"net-keepalive","response":"success"},{"item":"net-ticks","response":"success"},{"item":"netconf","response":"success"},{"item":"netease-captcha","response":"success"},{"item":"netlify-identity-widget","response":"success"},{"item":"netmask","response":"success"},{"item":"network-interfaces","response":"success"},{"item":"neverbounce","response":"success"},{"item":"new-relic-browser","response":"success"},{"item":"newline-remove","response":"success"},{"item":"newman","response":"success"},{"item":"newrelic","response":"success"},{"item":"newrelic__winston-enricher","response":"success"},{"item":"nexpect","response":"success"},{"item":"next-nprogress","response":"success"},{"item":"next-redux-saga","response":"success"},{"item":"next-seo","response":"success"},{"item":"next-tick","response":"success"},{"item":"nextgen-events","response":"success"},{"item":"ng-command","response":"success"},{"item":"ng-cordova","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/ng-cordova"},{"item":"ng-dialog","response":"success"},{"item":"ng-facebook","response":"success"},{"item":"ng-file-upload","response":"success"},{"item":"ng-flow","response":"success"},{"item":"ng-grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-i18next","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-notify","response":"success"},{"item":"ng-stomp","response":"success"},{"item":"ng-tags-input","response":"success"},{"item":"ngbootbox","response":"success"},{"item":"ngeohash","response":"success"},{"item":"ngkookies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngprogress","response":"success"},{"item":"ngprogress-lite","response":"success"},{"item":"ngreact","response":"success"},{"item":"ngsijs","response":"success"},{"item":"ngstorage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/ngstorage/index.d.ts(41,39): error TS2503: Cannot find namespace 'angular'.\n"},{"item":"ngtoaster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n"},{"item":"ngwysiwyg","response":"success"},{"item":"nice-try","response":"success"},{"item":"nightmare","response":"success"},{"item":"nightwatch","response":"success"},{"item":"nise","response":"success"},{"item":"nivo-slider","response":"success"},{"item":"no-scroll","response":"success"},{"item":"noble","response":"success"},{"item":"noble-mac","response":"success"},{"item":"nodal","response":"success"},{"item":"node","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'statements' of undefined\n"},{"item":"node-7z","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-abi","response":"success"},{"item":"node-apple-receipt-verify","response":"success"},{"item":"node-array-ext","response":"success"},{"item":"node-browser-history","response":"success"},{"item":"node-calendar","response":"success"},{"item":"node-cleanup","response":"success"},{"item":"node-config-manager","response":"success"},{"item":"node-crate","response":"success"},{"item":"node-cron","response":"success"},{"item":"node-dijkstra","response":"success"},{"item":"node-dir","response":"success"},{"item":"node-dogstatsd","response":"success"},{"item":"node-downloader-helper","response":"success"},{"item":"node-easy-cert","response":"success"},{"item":"node-emoji","response":"success"},{"item":"node-expat","response":"success"},{"item":"node-fetch","response":"success"},{"item":"node-fibers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-forge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-gcm","response":"success"},{"item":"node-geocoder","response":"success"},{"item":"node-getopt","response":"success"},{"item":"node-gettext","response":"success"},{"item":"node-gzip","response":"success"},{"item":"node-hid","response":"success"},{"item":"node-horseman","response":"success"},{"item":"node-hue-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-insights","response":"success"},{"item":"node-int64","response":"success"},{"item":"node-ipc","response":"success"},{"item":"node-jose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-jsfl-runner","response":"success"},{"item":"node-localstorage","response":"success"},{"item":"node-loggly-bulk","response":"success"},{"item":"node-mailjet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-memwatch","response":"success"},{"item":"node-mysql-wrapper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"node-notifier","response":"success"},{"item":"node-observer","response":"success"},{"item":"node-openload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"node-os-utils","response":"success"},{"item":"node-pdftk","response":"success"},{"item":"node-persist","response":"success"},{"item":"node-phpass","response":"success"},{"item":"node-polyglot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-powershell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-pushnotifications","response":"success"},{"item":"node-ral","response":"success"},{"item":"node-red","response":"success"},{"item":"node-redis-pubsub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"node-redmine","response":"success"},{"item":"node-resque","response":"success"},{"item":"node-rsa","response":"success"},{"item":"node-sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-sass-middleware","response":"success"},{"item":"node-schedule","response":"success"},{"item":"node-slack","response":"success"},{"item":"node-snap7","response":"success"},{"item":"node-sprite-generator","response":"success"},{"item":"node-ssdp","response":"success"},{"item":"node-ssh","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-static","response":"success"},{"item":"node-statsd","response":"success"},{"item":"node-telegram-bot-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-timecodes","response":"success"},{"item":"node-uuid","response":"success"},{"item":"node-vagrant","response":"success"},{"item":"node-validator","response":"success"},{"item":"node-vault","response":"success"},{"item":"node-wget-promise","response":"success"},{"item":"node-windows","response":"success"},{"item":"node-wit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-xlsx","response":"success"},{"item":"node-xmpp-client","response":"success"},{"item":"node-xmpp-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zendesk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zookeeper-client","response":"success"},{"item":"node-zopfli","response":"success"},{"item":"node-zopfli-es","response":"success"},{"item":"node_redis","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/node_redis"},{"item":"nodecredstash","response":"success"},{"item":"nodegit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nodejs-license-file","response":"success"},{"item":"nodemailer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"nodemailer-direct-transport","response":"success"},{"item":"nodemailer-mailgun-transport","response":"success"},{"item":"nodemailer-pickup-transport","response":"success"},{"item":"nodemailer-ses-transport","response":"success"},{"item":"nodemailer-smtp-pool","response":"success"},{"item":"nodemailer-smtp-transport","response":"success"},{"item":"nodemailer-stub-transport","response":"success"},{"item":"nodemon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"nodeunit","response":"success"},{"item":"noisejs","response":"success"},{"item":"nomnom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nonogram-solver","response":"success"},{"item":"nopt","response":"success"},{"item":"normalize-jss","response":"success"},{"item":"normalize-package-data","response":"success"},{"item":"normalize-path","response":"success"},{"item":"nosleep.js","response":"success"},{"item":"notie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/notie"},{"item":"notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notifyjs","response":"success"},{"item":"notifyjs-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nouislider","response":"success"},{"item":"novnc-core","response":"success"},{"item":"npm","response":"success"},{"item":"npm-cache-filename","response":"success"},{"item":"npm-license-crawler","response":"success"},{"item":"npm-list-author-packages","response":"success"},{"item":"npm-package-arg","response":"success"},{"item":"npm-packlist","response":"success"},{"item":"npm-paths","response":"success"},{"item":"npm-registry-fetch","response":"success"},{"item":"npm-registry-package-info","response":"success"},{"item":"npm-run","response":"success"},{"item":"npm-user-packages","response":"success"},{"item":"npm-which","response":"success"},{"item":"npmlog","response":"success"},{"item":"nprogress","response":"success"},{"item":"ns-api","response":"success"},{"item":"nslog","response":"success"},{"item":"nsqjs","response":"success"},{"item":"nssm","response":"success"},{"item":"ntlm-client","response":"success"},{"item":"nuclear-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n"},{"item":"num2fraction","response":"success"},{"item":"number-is-nan","response":"success"},{"item":"number-to-words","response":"success"},{"item":"numeral","response":"success"},{"item":"numeric","response":"success"},{"item":"numjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks-date","response":"success"},{"item":"nuxtjs__auth","response":"success"},{"item":"nvd3","response":"success"},{"item":"nw.gui","response":"success"},{"item":"nw.js","response":"success"},{"item":"nwmatcher","response":"success"},{"item":"nyaapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"oakdex-pokedex","response":"success"},{"item":"oauth","response":"success"},{"item":"oauth-shim","response":"success"},{"item":"oauth.js","response":"success"},{"item":"oauth2-implicit","response":"success"},{"item":"oauth2-server","response":"success"},{"item":"oauth2orize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"obelisk.js","response":"success"},{"item":"obj-file-parser","response":"success"},{"item":"obj-str","response":"success"},{"item":"object-assign","response":"success"},{"item":"object-assign-deep","response":"success"},{"item":"object-diff","response":"success"},{"item":"object-fit-images","response":"success"},{"item":"object-hash","response":"success"},{"item":"object-inspect","response":"success"},{"item":"object-joiner","response":"success"},{"item":"object-keys","response":"success"},{"item":"object-keys-mapping","response":"success"},{"item":"object-map","response":"success"},{"item":"object-mapper","response":"success"},{"item":"object-merge","response":"success"},{"item":"object-path","response":"success"},{"item":"object-refs","response":"success"},{"item":"object.getownpropertydescriptors","response":"success"},{"item":"object.omit","response":"success"},{"item":"object.pick","response":"success"},{"item":"objtools","response":"success"},{"item":"oblo-util","response":"success"},{"item":"oboe","response":"success"},{"item":"observe-js","response":"success"},{"item":"obsolete-web","response":"success"},{"item":"oclazyload","response":"success"},{"item":"ofe","response":"success"},{"item":"office-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-js-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-runtime","response":"success"},{"item":"offline-js","response":"success"},{"item":"offscreen-canvas","response":"success"},{"item":"offscreencanvas","response":"success"},{"item":"oibackoff","response":"success"},{"item":"oidc-token-manager","response":"success"},{"item":"oja","response":"success"},{"item":"okta__okta-vue","response":"success"},{"item":"ol","response":"success"},{"item":"omelette","response":"success"},{"item":"omggif","response":"success"},{"item":"omit-empty","response":"success"},{"item":"on-finished","response":"success"},{"item":"on-headers","response":"success"},{"item":"on-wake-up","response":"success"},{"item":"once","response":"success"},{"item":"one-time","response":"success"},{"item":"onesignal-cordova-plugin","response":"success"},{"item":"onfleet__node-onfleet","response":"success"},{"item":"oniguruma","response":"success"},{"item":"onionoo","response":"success"},{"item":"ontime","response":"success"},{"item":"open-graph","response":"success"},{"item":"open-wc__testing-karma","response":"success"},{"item":"open-wc__testing-karma-bs","response":"success"},{"item":"open-wc__webpack-import-meta-loader","response":"success"},{"item":"openapi-factory","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opener","response":"success"},{"item":"openfin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"openid","response":"success"},{"item":"openjscad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"openlayers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"openpgp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"openssi-websdk","response":"success"},{"item":"openstack-wrapper","response":"success"},{"item":"opentok","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opentype.js","response":"success"},{"item":"openui5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/openui5"},{"item":"openurl","response":"success"},{"item":"openurl2","response":"success"},{"item":"opossum","response":"success"},{"item":"optics-agent","response":"success"},{"item":"optimist","response":"success"},{"item":"optimize-css-assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"oracle__oraclejet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"oracledb","response":"success"},{"item":"orchestrator","response":"success"},{"item":"orderedmap","response":"success"},{"item":"orientjs","response":"success"},{"item":"original","response":"success"},{"item":"os-homedir","response":"success"},{"item":"os-service","response":"success"},{"item":"os-tmpdir","response":"success"},{"item":"os-utils","response":"success"},{"item":"osenv","response":"success"},{"item":"osmosis","response":"success"},{"item":"osmtogeojson","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ospec","response":"success"},{"item":"osrm","response":"success"},{"item":"osrs-json-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ot","response":"success"},{"item":"ouibounce","response":"success"},{"item":"overlayscrollbars","response":"success"},{"item":"overload-protection","response":"success"},{"item":"owasp-password-strength-test","response":"success"},{"item":"owl.carousel","response":"success"},{"item":"owlcarousel","response":"success"},{"item":"p-fifo","response":"success"},{"item":"p-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"p2","response":"success"},{"item":"p5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"pa11y","response":"success"},{"item":"package-info","response":"success"},{"item":"packery","response":"success"},{"item":"pacote","response":"success"},{"item":"pad-left","response":"success"},{"item":"page","response":"success"},{"item":"page-icon","response":"success"},{"item":"pager__jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"paho-mqtt","response":"success"},{"item":"pako","response":"success"},{"item":"palx","response":"success"},{"item":"pangu","response":"success"},{"item":"papaparse","response":"success"},{"item":"parallel-transform","response":"success"},{"item":"paralleljs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parameterize","response":"success"},{"item":"parcel-bundler","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parcel-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'children' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'parent' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'require' of types 'Module' and 'Module' are not identical.\n"},{"item":"parent-package-json","response":"success"},{"item":"parents","response":"success"},{"item":"parity-pmd","response":"success"},{"item":"parity-pmr","response":"success"},{"item":"parity-poe","response":"success"},{"item":"parquetjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"parse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"parse-author","response":"success"},{"item":"parse-color","response":"success"},{"item":"parse-filepath","response":"success"},{"item":"parse-full-name","response":"success"},{"item":"parse-git-config","response":"success"},{"item":"parse-github-url","response":"success"},{"item":"parse-glob","response":"success"},{"item":"parse-human-date-range","response":"success"},{"item":"parse-json","response":"success"},{"item":"parse-link-header","response":"success"},{"item":"parse-mockdb","response":"success"},{"item":"parse-numeric-range","response":"success"},{"item":"parse-package-name","response":"success"},{"item":"parse-passwd","response":"success"},{"item":"parse-path","response":"success"},{"item":"parse-prefer-header","response":"success"},{"item":"parse-torrent","response":"success"},{"item":"parse-torrent-file","response":"success"},{"item":"parse-unit","response":"success"},{"item":"parse5","response":"success"},{"item":"parse5-html-rewriting-stream","response":"success"},{"item":"parse5-htmlparser2-tree-adapter","response":"success"},{"item":"parse5-parser-stream","response":"success"},{"item":"parse5-plain-text-conversion-stream","response":"success"},{"item":"parse5-sax-parser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"parse5-serializer-stream","response":"success"},{"item":"parsecurrency","response":"success"},{"item":"parseurl","response":"success"},{"item":"parsimmon","response":"success"},{"item":"passport","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'ids' of undefined\n"},{"item":"passport-anonymous","response":"success"},{"item":"passport-auth0","response":"success"},{"item":"passport-azure-ad","response":"success"},{"item":"passport-beam","response":"success"},{"item":"passport-bnet","response":"success"},{"item":"passport-cognito","response":"success"},{"item":"passport-discord","response":"success"},{"item":"passport-facebook","response":"success"},{"item":"passport-facebook-token","response":"success"},{"item":"passport-github","response":"success"},{"item":"passport-github2","response":"success"},{"item":"passport-google-oauth","response":"success"},{"item":"passport-google-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"passport-google-oauth20","response":"success"},{"item":"passport-http","response":"success"},{"item":"passport-http-bearer","response":"success"},{"item":"passport-instagram","response":"success"},{"item":"passport-jwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"passport-kakao","response":"success"},{"item":"passport-linkedin-oauth2","response":"success"},{"item":"passport-local","response":"success"},{"item":"passport-local-mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"passport-microsoft","response":"success"},{"item":"passport-naver","response":"success"},{"item":"passport-oauth2","response":"success"},{"item":"passport-oauth2-client-password","response":"success"},{"item":"passport-oauth2-refresh","response":"success"},{"item":"passport-remember-me-extended","response":"success"},{"item":"passport-saml","response":"success"},{"item":"passport-steam","response":"success"},{"item":"passport-strategy","response":"success"},{"item":"passport-twitter","response":"success"},{"item":"passport-unique-token","response":"success"},{"item":"passport-vkontakte","response":"success"},{"item":"passport-windowsauth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"passport.socketio","response":"success"},{"item":"password","response":"success"},{"item":"password-hash","response":"success"},{"item":"password-hash-and-salt","response":"success"},{"item":"path-is-absolute","response":"success"},{"item":"path-is-inside","response":"success"},{"item":"path-parse","response":"success"},{"item":"path-regex","response":"success"},{"item":"pathfinding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pathjs","response":"success"},{"item":"pathval","response":"success"},{"item":"pathwatcher","response":"success"},{"item":"pause","response":"success"},{"item":"payment","response":"success"},{"item":"paypal-cordova-plugin","response":"success"},{"item":"paypal-rest-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"paystack","response":"success"},{"item":"pbf","response":"success"},{"item":"pbkdf2","response":"success"},{"item":"pdf-fill-form","response":"success"},{"item":"pdf-image","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"pdf-viewer-reactjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"pdf2image","response":"success"},{"item":"pdfjs-dist","response":"success"},{"item":"pdfkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pdfmake","response":"success"},{"item":"pdfobject","response":"success"},{"item":"pebblekitjs","response":"success"},{"item":"peer-dial","response":"success"},{"item":"pegjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pell","response":"success"},{"item":"pem","response":"success"},{"item":"pem-jwk","response":"success"},{"item":"pendo-io-browser","response":"success"},{"item":"perfy","response":"success"},{"item":"permit","response":"success"},{"item":"persona","response":"success"},{"item":"pet-finder-api","response":"success"},{"item":"petit-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg-copy-streams","response":"success"},{"item":"pg-ears","response":"success"},{"item":"pg-escape","response":"success"},{"item":"pg-format","response":"success"},{"item":"pg-large-object","response":"success"},{"item":"pg-pool","response":"success"},{"item":"pg-query-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"pg-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pgwmodal","response":"success"},{"item":"phantom","response":"success"},{"item":"phantomcss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phantomjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phoenix","response":"success"},{"item":"phone","response":"success"},{"item":"phone-formatter","response":"success"},{"item":"phoneformat.js","response":"success"},{"item":"phonegap","response":"success"},{"item":"phonegap-facebook-plugin","response":"success"},{"item":"phonegap-nfc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/phonegap-nfc/index.d.ts(459,5): error TS2309: An export assignment cannot be used in a module with other exported elements.\n"},{"item":"phonegap-plugin-barcodescanner","response":"success"},{"item":"phonon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceExportDeclaration - it will convert to null"},{"item":"photonui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"photoswipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"php-serialize","response":"success"},{"item":"physijs","response":"success"},{"item":"pi-camera","response":"success"},{"item":"pi-spi","response":"success"},{"item":"pica","response":"success"},{"item":"pick-deep","response":"success"},{"item":"pick-weight","response":"success"},{"item":"pickadate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"picturefill","response":"success"},{"item":"pid-from-port","response":"success"},{"item":"pidusage","response":"success"},{"item":"pify","response":"success"},{"item":"pigpio","response":"success"},{"item":"pigpio-dht","response":"success"},{"item":"pikaday","response":"success"},{"item":"pikaday-time","response":"success"},{"item":"ping","response":"success"},{"item":"pinkyswear","response":"success"},{"item":"pino","response":"success"},{"item":"pino-http","response":"success"},{"item":"pino-multi-stream","response":"success"},{"item":"pino-std-serializers","response":"success"},{"item":"pinterest-sdk","response":"success"},{"item":"pinyin","response":"success"},{"item":"piwik-tracker","response":"success"},{"item":"pixelmatch","response":"success"},{"item":"pixl-xml","response":"success"},{"item":"pizzip","response":"success"},{"item":"pkcs7-padding","response":"success"},{"item":"pkgcloud","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pkijs","response":"success"},{"item":"places","response":"success"},{"item":"plaid-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"platform","response":"success"},{"item":"playerframework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"playmusic","response":"success"},{"item":"pleasejs","response":"success"},{"item":"plist","response":"success"},{"item":"plotly.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"plugapi","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plugin-error","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plupload","response":"success"},{"item":"pluralize","response":"success"},{"item":"plurals-cldr","response":"success"},{"item":"png.js","response":"success"},{"item":"pngjs","response":"success"},{"item":"pngjs2","response":"success"},{"item":"pngquant-bin","response":"success"},{"item":"pnpapi","response":"success"},{"item":"podcast","response":"success"},{"item":"podium","response":"success"},{"item":"poi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"point-in-polygon","response":"success"},{"item":"poker-evaluator","response":"success"},{"item":"pollyjs__adapter","response":"success"},{"item":"pollyjs__adapter-fetch","response":"success"},{"item":"pollyjs__adapter-node-http","response":"success"},{"item":"pollyjs__adapter-puppeteer","response":"success"},{"item":"pollyjs__adapter-xhr","response":"success"},{"item":"pollyjs__core","response":"success"},{"item":"pollyjs__node-server","response":"success"},{"item":"pollyjs__persister","response":"success"},{"item":"pollyjs__persister-fs","response":"success"},{"item":"pollyjs__persister-local-storage","response":"success"},{"item":"pollyjs__persister-rest","response":"success"},{"item":"pollyjs__utils","response":"success"},{"item":"polyfill-service","response":"success"},{"item":"polygon","response":"success"},{"item":"polygons-intersect","response":"success"},{"item":"polylabel","response":"success"},{"item":"polyline","response":"success"},{"item":"polymer","response":"success"},{"item":"polymer-ts","response":"success"},{"item":"popcorn","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'kind' of undefined\n"},{"item":"port-numbers","response":"success"},{"item":"portscanner","response":"success"},{"item":"postal","response":"success"},{"item":"postcss-calc","response":"success"},{"item":"postcss-custom-properties","response":"success"},{"item":"postcss-icss-values","response":"success"},{"item":"postcss-import","response":"success"},{"item":"postcss-load-config","response":"success"},{"item":"postcss-modules-extract-imports","response":"success"},{"item":"postcss-modules-local-by-default","response":"success"},{"item":"postcss-modules-resolve-imports","response":"success"},{"item":"postcss-modules-scope","response":"success"},{"item":"postcss-modules-values","response":"success"},{"item":"postcss-nested","response":"success"},{"item":"postcss-reporter","response":"success"},{"item":"postcss-url","response":"success"},{"item":"poster-image","response":"success"},{"item":"postlight__mercury-parser","response":"success"},{"item":"postman-collection","response":"success"},{"item":"postmate","response":"success"},{"item":"pouch-redux-middleware","response":"success"},{"item":"pouchdb","response":"success"},{"item":"pouchdb-adapter-cordova-sqlite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-fruitdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-http","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-idb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-leveldb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-localstorage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-memory","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-node-websql","response":"success"},{"item":"pouchdb-adapter-websql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-browser","response":"success"},{"item":"pouchdb-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-http","response":"success"},{"item":"pouchdb-live-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-mapreduce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-replication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-upsert","response":"success"},{"item":"power-assert","response":"success"},{"item":"power-assert-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"powerapps-component-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/powerapps-component-framework"},{"item":"powerbi-visuals-tools","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"preact-i18n","response":"success"},{"item":"precise","response":"success"},{"item":"precond","response":"success"},{"item":"preferred-pm","response":"success"},{"item":"prefixfree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"preloadjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prelude-ls","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier-package-json","response":"success"},{"item":"pretty","response":"success"},{"item":"pretty-hrtime","response":"success"},{"item":"pretty-time","response":"success"},{"item":"prettyjson","response":"success"},{"item":"preval.macro","response":"success"},{"item":"primus","response":"success"},{"item":"priorityqueuejs","response":"success"},{"item":"prismic-dom","response":"success"},{"item":"prismjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"private-ip","response":"success"},{"item":"probability-distributions","response":"success"},{"item":"procfs-stats","response":"success"},{"item":"proclaim","response":"success"},{"item":"progress","response":"success"},{"item":"progress-bar-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"progress-stream","response":"success"},{"item":"progressbar","response":"success"},{"item":"progressjs","response":"success"},{"item":"proj4","response":"success"},{"item":"proj4leaflet","response":"success"},{"item":"project-name","response":"success"},{"item":"project-oxford","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"prometheus-gc-stats","response":"success"},{"item":"promise-abortable","response":"success"},{"item":"promise-dag","response":"success"},{"item":"promise-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-ftp-common","response":"success"},{"item":"promise-hash","response":"success"},{"item":"promise-inflight","response":"success"},{"item":"promise-map-limit","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise.allsettled","response":"success"},{"item":"promise.prototype.finally","response":"success"},{"item":"promised-ldap","response":"success"},{"item":"promised-temp","response":"success"},{"item":"promisify-node","response":"success"},{"item":"promisify-supertest","response":"success"},{"item":"prompt-sync","response":"success"},{"item":"prompt-sync-history","response":"success"},{"item":"promptly","response":"success"},{"item":"prompts","response":"success"},{"item":"prop-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"proper-lockfile","response":"success"},{"item":"proper-url-join","response":"success"},{"item":"properties-reader","response":"success"},{"item":"prosemirror-collab","response":"success"},{"item":"prosemirror-commands","response":"success"},{"item":"prosemirror-dev-tools","response":"success"},{"item":"prosemirror-dropcursor","response":"success"},{"item":"prosemirror-gapcursor","response":"success"},{"item":"prosemirror-history","response":"success"},{"item":"prosemirror-inputrules","response":"success"},{"item":"prosemirror-keymap","response":"success"},{"item":"prosemirror-markdown","response":"success"},{"item":"prosemirror-menu","response":"success"},{"item":"prosemirror-model","response":"success"},{"item":"prosemirror-schema-basic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"prosemirror-schema-list","response":"success"},{"item":"prosemirror-state","response":"success"},{"item":"prosemirror-test-builder","response":"success"},{"item":"prosemirror-transform","response":"success"},{"item":"prosemirror-view","response":"success"},{"item":"protoc-plugin","response":"success"},{"item":"protocol-buffers-schema","response":"success"},{"item":"protocols","response":"success"},{"item":"proton-native","response":"success"},{"item":"protoo-server","response":"success"},{"item":"protractor-browser-logs","response":"success"},{"item":"protractor-helpers","response":"success"},{"item":"protractor-http-mock","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"provinces","response":"success"},{"item":"proxy-addr","response":"success"},{"item":"proxy-from-env","response":"success"},{"item":"proxy-lists","response":"success"},{"item":"proxy-verifier","response":"success"},{"item":"proxyquire","response":"success"},{"item":"ps-tree","response":"success"},{"item":"pseudo-audio-param","response":"success"},{"item":"psl","response":"success"},{"item":"ptomasroos__react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"pty.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pubnub","response":"success"},{"item":"pubsub-js","response":"success"},{"item":"pug","response":"success"},{"item":"pull-stream","response":"success"},{"item":"pulltorefreshjs","response":"success"},{"item":"pulsar-client","response":"success"},{"item":"pump","response":"success"},{"item":"pumpify","response":"success"},{"item":"punycode","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"puppeteer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"puppeteer-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"purdy","response":"success"},{"item":"pure-render-decorator","response":"success"},{"item":"purifycss-webpack","response":"success"},{"item":"purl","response":"success"},{"item":"pusher-js","response":"success"},{"item":"pusher__chatkit-client","response":"success"},{"item":"pvutils","response":"success"},{"item":"python-shell","response":"success"},{"item":"python-struct","response":"success"},{"item":"q","response":"success"},{"item":"q-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"q-retry","response":"success"},{"item":"qhistory","response":"success"},{"item":"qiniu-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik-engineapi","response":"success"},{"item":"qlik-visualizationextensions","response":"success"},{"item":"qr-image","response":"success"},{"item":"qrcode","response":"success"},{"item":"qrcode-svg","response":"success"},{"item":"qrcode.react","response":"success"},{"item":"qs","response":"success"},{"item":"qs-middleware","response":"success"},{"item":"qtip2","response":"success"},{"item":"querystringify","response":"success"},{"item":"quick-hash","response":"success"},{"item":"quill","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\n\n../DefinitelyTyped/types/quill/node_modules/quill-delta/dist/Delta.d.ts(1,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/quill/node_modules/fast-diff/diff\"' can only be default-imported using the 'esModuleInterop' flag\n"},{"item":"quixote","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"quoted-printable","response":"success"},{"item":"qwest","response":"success"},{"item":"r-script","response":"success"},{"item":"rabbit.js","response":"success"},{"item":"rabbitmq-schema","response":"success"},{"item":"radium","response":"success"},{"item":"radius","response":"success"},{"item":"radix64","response":"success"},{"item":"raf","response":"success"},{"item":"raf-schd","response":"success"},{"item":"ramda","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"random","response":"success"},{"item":"random-boolean","response":"success"},{"item":"random-bytes","response":"success"},{"item":"random-normal","response":"success"},{"item":"random-number","response":"success"},{"item":"random-seed","response":"success"},{"item":"random-string","response":"success"},{"item":"random-useragent","response":"success"},{"item":"randombytes","response":"success"},{"item":"randomcolor","response":"success"},{"item":"randomstring","response":"success"},{"item":"range-parser","response":"success"},{"item":"range_check","response":"success"},{"item":"rangy","response":"success"},{"item":"rangyinputs","response":"success"},{"item":"ranjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raphael","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"rappid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rascal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rasha","response":"success"},{"item":"raspi","response":"success"},{"item":"raspi-board","response":"success"},{"item":"raspi-gpio","response":"success"},{"item":"raspi-i2c","response":"success"},{"item":"raspi-led","response":"success"},{"item":"raspi-onewire","response":"success"},{"item":"raspi-peripheral","response":"success"},{"item":"raspi-pwm","response":"success"},{"item":"raspi-serial","response":"success"},{"item":"raspi-soft-pwm","response":"success"},{"item":"rate-limit-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"ratelimiter","response":"success"},{"item":"raty","response":"success"},{"item":"raven","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raven-for-redux","response":"success"},{"item":"rax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"raygun","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raygun4js","response":"success"},{"item":"rbac-a","response":"success"},{"item":"rbush","response":"success"},{"item":"rc","response":"success"},{"item":"rc-select","response":"success"},{"item":"rc-slider","response":"success"},{"item":"rc-steps","response":"success"},{"item":"rc-switch","response":"success"},{"item":"rc-time-picker","response":"success"},{"item":"rc-tooltip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rc-tree","response":"success"},{"item":"rcloader","response":"success"},{"item":"rdf-data-model","response":"success"},{"item":"rdf-dataset-ext","response":"success"},{"item":"rdf-dataset-indexed","response":"success"},{"item":"rdf-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"rdf-js","response":"success"},{"item":"rdf-transform-triple-to-quad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__dataset","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'ids' of undefined\n"},{"item":"rdfjs__express-handler","response":"success"},{"item":"rdfjs__fetch","response":"success"},{"item":"rdfjs__fetch-lite","response":"success"},{"item":"rdfjs__formats-common","response":"success"},{"item":"rdfjs__namespace","response":"success"},{"item":"rdfjs__parser-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__parser-n3","response":"success"},{"item":"rdfjs__serializer-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__serializer-jsonld-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__sink-map","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__term-set","response":"success"},{"item":"rdfjs__to-ntriples","response":"success"},{"item":"rdflib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"re-base","response":"success"},{"item":"reach__alert","response":"success"},{"item":"reach__alert-dialog","response":"success"},{"item":"reach__auto-id","response":"success"},{"item":"reach__combobox","response":"success"},{"item":"reach__dialog","response":"success"},{"item":"reach__menu-button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reach__rect","response":"success"},{"item":"reach__router","response":"success"},{"item":"reach__skip-nav","response":"success"},{"item":"reach__tabs","response":"success"},{"item":"reach__tooltip","response":"success"},{"item":"reach__utils","response":"success"},{"item":"reach__visually-hidden","response":"success"},{"item":"reach__window-size","response":"success"},{"item":"react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-adal","response":"success"},{"item":"react-adaptive-hooks","response":"success"},{"item":"react-add-to-calendar","response":"success"},{"item":"react-addons-create-fragment","response":"success"},{"item":"react-addons-css-transition-group","response":"success"},{"item":"react-addons-linked-state-mixin","response":"success"},{"item":"react-addons-perf","response":"success"},{"item":"react-addons-pure-render-mixin","response":"success"},{"item":"react-addons-shallow-compare","response":"success"},{"item":"react-addons-test-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-addons-transition-group","response":"success"},{"item":"react-addons-update","response":"success"},{"item":"react-albus","response":"success"},{"item":"react-alert","response":"success"},{"item":"react-amplitude","response":"success"},{"item":"react-animate-on-scroll","response":"success"},{"item":"react-app","response":"success"},{"item":"react-aria-live","response":"success"},{"item":"react-aria-menubutton","response":"success"},{"item":"react-aria-modal","response":"success"},{"item":"react-audio-player","response":"success"},{"item":"react-autocomplete","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"react-autosuggest","response":"success"},{"item":"react-avatar-editor","response":"success"},{"item":"react-axe","response":"success"},{"item":"react-beautiful-dnd","response":"success"},{"item":"react-beforeunload","response":"success"},{"item":"react-better-password","response":"success"},{"item":"react-big-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-big-scheduler","response":"success"},{"item":"react-blessed","response":"success"},{"item":"react-body-classname","response":"success"},{"item":"react-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-bootstrap-date-picker","response":"success"},{"item":"react-bootstrap-daterangepicker","response":"success"},{"item":"react-bootstrap-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-bootstrap-table-next","response":"success"},{"item":"react-bootstrap-table2-filter","response":"success"},{"item":"react-bootstrap-table2-paginator","response":"success"},{"item":"react-bootstrap-table2-toolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-bootstrap-typeahead","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-breadcrumbs","response":"success"},{"item":"react-breadcrumbs-dynamic","response":"success"},{"item":"react-broadcast","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-burger-menu","response":"success"},{"item":"react-bytesize-icons","response":"success"},{"item":"react-cache","response":"success"},{"item":"react-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-calendar-heatmap","response":"success"},{"item":"react-calendar-timeline","response":"success"},{"item":"react-canvas-draw","response":"success"},{"item":"react-cartographer","response":"success"},{"item":"react-chat-widget","response":"success"},{"item":"react-click-outside","response":"success"},{"item":"react-click-outside-hook","response":"success"},{"item":"react-close-on-escape","response":"success"},{"item":"react-codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-coinhive","response":"success"},{"item":"react-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-confirm","response":"success"},{"item":"react-cookies","response":"success"},{"item":"react-copy-to-clipboard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-copy-write","response":"success"},{"item":"react-count-to","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-countdown-circle-timer","response":"success"},{"item":"react-countup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-credit-cards","response":"success"},{"item":"react-cropper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-css-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-css-modules","response":"success"},{"item":"react-css-transition-replace","response":"success"},{"item":"react-csv","response":"success"},{"item":"react-currency-formatter","response":"success"},{"item":"react-custom-scrollbars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-d3-graph","response":"success"},{"item":"react-data-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"react-datagrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-date-range","response":"success"},{"item":"react-datepicker","response":"success"},{"item":"react-daterange-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"react-dates","response":"success"},{"item":"react-dev-utils","response":"success"},{"item":"react-devtools","response":"success"},{"item":"react-div-100vh","response":"success"},{"item":"react-dnd-multi-backend","response":"success"},{"item":"react-dnd-scrollzone","response":"success"},{"item":"react-document-meta","response":"success"},{"item":"react-document-title","response":"success"},{"item":"react-dom","response":"success"},{"item":"react-dom-factories","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-draft-wysiwyg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-dragtastic","response":"success"},{"item":"react-dynamic-number","response":"success"},{"item":"react-easy-chart","response":"success"},{"item":"react-easy-crop","response":"success"},{"item":"react-editext","response":"success"},{"item":"react-elemental","response":"success"},{"item":"react-email-editor","response":"success"},{"item":"react-event-listener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-fa","response":"success"},{"item":"react-facebook-login","response":"success"},{"item":"react-facebook-login-component","response":"success"},{"item":"react-fade-in","response":"success"},{"item":"react-faux-dom","response":"success"},{"item":"react-file-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-file-reader-input","response":"success"},{"item":"react-filepond","response":"success"},{"item":"react-final-form-listeners","response":"success"},{"item":"react-flag-icon-css","response":"success"},{"item":"react-flags-select","response":"success"},{"item":"react-flatpickr","response":"success"},{"item":"react-flex","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-flexr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-fontawesome","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-form","response":"success"},{"item":"react-foundation","response":"success"},{"item":"react-frame-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-frontload","response":"success"},{"item":"react-gamepad","response":"success"},{"item":"react-gateway","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-geosuggest","response":"success"},{"item":"react-github-button","response":"success"},{"item":"react-global-configuration","response":"success"},{"item":"react-google-login-component","response":"success"},{"item":"react-google-maps-loader","response":"success"},{"item":"react-google-places-suggest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-google-recaptcha","response":"success"},{"item":"react-gravatar","response":"success"},{"item":"react-grid-layout","response":"success"},{"item":"react-gtm-module","response":"success"},{"item":"react-hamburger-menu","response":"success"},{"item":"react-hammerjs","response":"success"},{"item":"react-headroom","response":"success"},{"item":"react-helmet","response":"success"},{"item":"react-helmet-with-visor","response":"success"},{"item":"react-highcharts","response":"success"},{"item":"react-highlight","response":"success"},{"item":"react-highlight-words","response":"success"},{"item":"react-highlight.js","response":"success"},{"item":"react-highlighter","response":"success"},{"item":"react-holder","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"react-hook-mousetrap","response":"success"},{"item":"react-hooks-helper","response":"success"},{"item":"react-howler","response":"success"},{"item":"react-html-parser","response":"success"},{"item":"react-hyperscript","response":"success"},{"item":"react-icofont","response":"success"},{"item":"react-icon-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-image-crop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"react-image-fallback","response":"success"},{"item":"react-image-gallery","response":"success"},{"item":"react-image-magnify","response":"success"},{"item":"react-imageloader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-images","response":"success"},{"item":"react-imgix","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-imgpro","response":"success"},{"item":"react-immutable-proptypes","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-infinite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-calendar","response":"success"},{"item":"react-infinite-scroll-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-input-autosize","response":"success"},{"item":"react-input-calendar","response":"success"},{"item":"react-input-mask","response":"success"},{"item":"react-inspector","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-instantsearch","response":"success"},{"item":"react-instantsearch-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-interactive","response":"success"},{"item":"react-intl-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-is","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-is-deprecated","response":"success"},{"item":"react-js-pagination","response":"success"},{"item":"react-json","response":"success"},{"item":"react-json-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-jsonschema-form","response":"success"},{"item":"react-kawaii","response":"success"},{"item":"react-lazy-load-image-component","response":"success"},{"item":"react-lazyload","response":"success"},{"item":"react-lazylog","response":"success"},{"item":"react-leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-leaflet-markercluster","response":"success"},{"item":"react-leaflet-sidebarv2","response":"success"},{"item":"react-lifecycle-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-lifecycles-compat","response":"success"},{"item":"react-linkify","response":"success"},{"item":"react-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-loadable","response":"success"},{"item":"react-loadable-visibility","response":"success"},{"item":"react-loader","response":"success"},{"item":"react-loader-spinner","response":"success"},{"item":"react-lottie","response":"success"},{"item":"react-mailchimp-subscribe","response":"success"},{"item":"react-map-gl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-maskedinput","response":"success"},{"item":"react-material-ui-form-validator","response":"success"},{"item":"react-mathquill","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-mce","response":"success"},{"item":"react-mdl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-measure","response":"success"},{"item":"react-medium-image-zoom","response":"success"},{"item":"react-mentions","response":"success"},{"item":"react-messenger-checkbox","response":"success"},{"item":"react-mic","response":"success"},{"item":"react-mixin","response":"success"},{"item":"react-modal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"react-motion","response":"success"},{"item":"react-motion-loop","response":"success"},{"item":"react-motion-slider","response":"success"},{"item":"react-motion-ui-pack","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-actionsheet","response":"success"},{"item":"react-native-android-taskdescription","response":"success"},{"item":"react-native-app-intro-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-app-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-appsflyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-audio","response":"success"},{"item":"react-native-auth0","response":"success"},{"item":"react-native-autocomplete-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-awesome-card-io","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-background-downloader","response":"success"},{"item":"react-native-background-timer","response":"success"},{"item":"react-native-bluetooth-serial","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendar-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-canvas","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-charts-wrapper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-check-box","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-communications","response":"success"},{"item":"react-native-community__cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-native-custom-tabs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-datawedge-intents","response":"success"},{"item":"react-native-datepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialogflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-doc-viewer","response":"success"},{"item":"react-native-document-picker","response":"success"},{"item":"react-native-dotenv","response":"success"},{"item":"react-native-draggable-flatlist","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer-layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-easy-upgrade","response":"success"},{"item":"react-native-elevated-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fbsdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fetch-blob","response":"success"},{"item":"react-native-flip-card","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-google-signin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-honeywell-scanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-htmlview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-huawei-protected-apps","response":"success"},{"item":"react-native-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-incall-manager","response":"success"},{"item":"react-native-indicators","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-input-spinner","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-joi","response":"success"},{"item":"react-native-keep-awake","response":"success"},{"item":"react-native-keyboard-spacer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-loading-spinner-overlay","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-maps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-design-searchbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-dropdown","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-textfield","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mixpanel","response":"success"},{"item":"react-native-modal-dropdown","response":"success"},{"item":"react-native-modal-filter-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-modalbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-navbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-orientation","response":"success"},{"item":"react-native-pdf-lib","response":"success"},{"item":"react-native-percentage-circle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-phone-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-photo-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-platform-touchable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-popup-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-privacy-snapshot","response":"success"},{"item":"react-native-push-notification","response":"success"},{"item":"react-native-qrcode","response":"success"},{"item":"react-native-read-more-text","response":"success"},{"item":"react-native-referrer","response":"success"},{"item":"react-native-restart","response":"success"},{"item":"react-native-rss-parser","response":"success"},{"item":"react-native-safari-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scaled-image","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scrollable-tab-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"react-native-sensor-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-settings-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share-extension","response":"success"},{"item":"react-native-share-menu","response":"success"},{"item":"react-native-signature-capture","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snackbar-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snap-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sqlite-storage","response":"success"},{"item":"react-native-star-rating","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-status-bar-height","response":"success"},{"item":"react-native-svg-charts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-svg-uri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-swiper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-native-tab-navigator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-text-input-mask","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-toast-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-touch-id","response":"success"},{"item":"react-native-uuid","response":"success"},{"item":"react-native-uuid-generator","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-version-check","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-version-number","response":"success"},{"item":"react-native-video","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-video-player","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-view-pdf","response":"success"},{"item":"react-native-webrtc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-zeroconf","response":"success"},{"item":"react-native-zss-rich-text-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-no-ssr","response":"success"},{"item":"react-notification-system","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notification-system-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notify-toast","response":"success"},{"item":"react-numeric-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"react-offcanvas","response":"success"},{"item":"react-onclickoutside","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-onsenui","response":"success"},{"item":"react-outside-click-handler","response":"success"},{"item":"react-overlays","response":"success"},{"item":"react-paginate","response":"success"},{"item":"react-panelgroup","response":"success"},{"item":"react-pdf","response":"success"},{"item":"react-phone-number-input","response":"success"},{"item":"react-photoswipe","response":"success"},{"item":"react-places-autocomplete","response":"success"},{"item":"react-plaid-link","response":"success"},{"item":"react-plotly.js","response":"success"},{"item":"react-plyr","response":"success"},{"item":"react-pointable","response":"success"},{"item":"react-popover","response":"success"},{"item":"react-portal","response":"success"},{"item":"react-primitives","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-props-decorators","response":"success"},{"item":"react-qr-reader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-query","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-radio-group","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-rangeslider","response":"success"},{"item":"react-recaptcha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-recaptcha-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-reconciler","response":"success"},{"item":"react-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-redux-epic","response":"success"},{"item":"react-redux-i18n","response":"success"},{"item":"react-redux-toastr","response":"success"},{"item":"react-relay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-request","response":"success"},{"item":"react-resizable","response":"success"},{"item":"react-resize-detector","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"react-resolver","response":"success"},{"item":"react-responsive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-bootstrap","response":"success"},{"item":"react-router-config","response":"success"},{"item":"react-router-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-guard","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-hash-link","response":"success"},{"item":"react-router-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-navigation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-navigation-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-param-link","response":"success"},{"item":"react-router-redux","response":"success"},{"item":"react-router-tabs","response":"success"},{"item":"react-rte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-s-alert","response":"success"},{"item":"react-scroll","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-scroll-into-view-if-needed","response":"success"},{"item":"react-scroll-rotate","response":"success"},{"item":"react-scrollable-anchor","response":"success"},{"item":"react-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"react-scrollbar-size","response":"success"},{"item":"react-scrollspy","response":"success"},{"item":"react-select","response":"success"},{"item":"react-shadow-dom-retarget-events","response":"success"},{"item":"react-share","response":"success"},{"item":"react-show-more","response":"success"},{"item":"react-side-effect","response":"success"},{"item":"react-sidebar","response":"success"},{"item":"react-signature-canvas","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-simple-maps","response":"success"},{"item":"react-sizes","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-sketchapp","response":"success"},{"item":"react-slick","response":"success"},{"item":"react-slider","response":"success"},{"item":"react-smooth-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"react-sortable-tree","response":"success"},{"item":"react-sortable-tree-theme-file-explorer","response":"success"},{"item":"react-sound","response":"success"},{"item":"react-sparklines","response":"success"},{"item":"react-spinkit","response":"success"},{"item":"react-spinner","response":"success"},{"item":"react-splitter-layout","response":"success"},{"item":"react-star-rating-component","response":"success"},{"item":"react-stars","response":"success"},{"item":"react-sticky","response":"success"},{"item":"react-sticky-el","response":"success"},{"item":"react-stickynode","response":"success"},{"item":"react-stripe-elements","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-svg-inline","response":"success"},{"item":"react-svg-pan-zoom","response":"success"},{"item":"react-swf","response":"success"},{"item":"react-swipe","response":"success"},{"item":"react-swipeable-views","response":"success"},{"item":"react-swipeable-views-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-syntax-highlighter","response":"success"},{"item":"react-table","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-table-filter","response":"success"},{"item":"react-tabs","response":"success"},{"item":"react-tabs-redux","response":"success"},{"item":"react-tag-autocomplete","response":"success"},{"item":"react-tag-input","response":"success"},{"item":"react-tagcloud","response":"success"},{"item":"react-tagsinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"react-tap-event-plugin","response":"success"},{"item":"react-test-renderer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-text-mask","response":"success"},{"item":"react-text-truncate","response":"success"},{"item":"react-textarea-autosize","response":"success"},{"item":"react-timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-timeout","response":"success"},{"item":"react-toast-notifications","response":"success"},{"item":"react-toastr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-toggle","response":"success"},{"item":"react-tooltip","response":"success"},{"item":"react-touch","response":"success"},{"item":"react-tracking","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-transition-group","response":"success"},{"item":"react-treeview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-truncate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"react-twitter-auth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-typing-animation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-typist","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-ultimate-pagination","response":"success"},{"item":"react-user-tour","response":"success"},{"item":"react-vega","response":"success"},{"item":"react-vertical-timeline-component","response":"success"},{"item":"react-virtual-keyboard","response":"success"},{"item":"react-virtualized","response":"success"},{"item":"react-virtualized-auto-sizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-virtualized-select","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-visibility-sensor","response":"success"},{"item":"react-wait","response":"success"},{"item":"react-weui","response":"success"},{"item":"react-widgets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-widgets-moment","response":"success"},{"item":"react-window","response":"success"},{"item":"react-window-infinite-loader","response":"success"},{"item":"react-window-size","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-with-styles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-wow","response":"success"},{"item":"react-youtube","response":"success"},{"item":"react-youtube-embed","response":"success"},{"item":"reactable","response":"success"},{"item":"reactabular-dnd","response":"success"},{"item":"reactabular-sticky","response":"success"},{"item":"reactabular-table","response":"success"},{"item":"reactcss","response":"success"},{"item":"reactour","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reactstrap","response":"success"},{"item":"read","response":"success"},{"item":"read-package-tree","response":"success"},{"item":"readable-stream","response":"success"},{"item":"readdir-stream","response":"success"},{"item":"readline-sync","response":"success"},{"item":"readline-transform","response":"success"},{"item":"readmore-js","response":"success"},{"item":"reapop","response":"success"},{"item":"rebass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebind-host","response":"success"},{"item":"recaptcha2","response":"success"},{"item":"recase","response":"success"},{"item":"recharts","response":"success"},{"item":"recharts-scale","response":"success"},{"item":"rechoir","response":"success"},{"item":"recluster","response":"success"},{"item":"recompose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"reconnect-core","response":"success"},{"item":"reconnectingwebsocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"recorder-js","response":"success"},{"item":"recurly__recurly-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"recursive-readdir","response":"success"},{"item":"redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-errors","response":"success"},{"item":"redis-info","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"redis-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-rate-limiter","response":"success"},{"item":"redis-scripto","response":"success"},{"item":"redlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"redux-action","response":"success"},{"item":"redux-action-utils","response":"success"},{"item":"redux-actions","response":"success"},{"item":"redux-api-middleware","response":"success"},{"item":"redux-async-queue","response":"success"},{"item":"redux-auth-wrapper","response":"success"},{"item":"redux-batched-subscribe","response":"success"},{"item":"redux-cablecar","response":"success"},{"item":"redux-debounced","response":"success"},{"item":"redux-devtools","response":"success"},{"item":"redux-devtools-dock-monitor","response":"success"},{"item":"redux-devtools-log-monitor","response":"success"},{"item":"redux-doghouse","response":"success"},{"item":"redux-duck","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-first-router","response":"success"},{"item":"redux-first-router-link","response":"success"},{"item":"redux-first-router-restore-scroll","response":"success"},{"item":"redux-first-routing","response":"success"},{"item":"redux-form","response":"success"},{"item":"redux-immutable","response":"success"},{"item":"redux-immutable-state-invariant","response":"success"},{"item":"redux-infinite-scroll","response":"success"},{"item":"redux-injectable-store","response":"success"},{"item":"redux-localstorage","response":"success"},{"item":"redux-localstorage-debounce","response":"success"},{"item":"redux-localstorage-filter","response":"success"},{"item":"redux-logger","response":"success"},{"item":"redux-mock-store","response":"success"},{"item":"redux-optimistic-ui","response":"success"},{"item":"redux-orm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"redux-pack","response":"success"},{"item":"redux-persist-transform-encrypt","response":"success"},{"item":"redux-persist-transform-filter","response":"success"},{"item":"redux-promise","response":"success"},{"item":"redux-promise-listener","response":"success"},{"item":"redux-recycle","response":"success"},{"item":"redux-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"redux-saga-routines","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-saga-tester","response":"success"},{"item":"redux-seamless-immutable","response":"success"},{"item":"redux-sentry-middleware","response":"success"},{"item":"redux-shortcuts","response":"success"},{"item":"redux-socket.io","response":"success"},{"item":"redux-state-sync","response":"success"},{"item":"redux-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"redux-storage-engine-jsurl","response":"success"},{"item":"redux-storage-engine-localstorage","response":"success"},{"item":"redux-test-utils","response":"success"},{"item":"redux-testkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"redux-ui","response":"success"},{"item":"ref","response":"success"},{"item":"ref-array","response":"success"},{"item":"ref-array-di","response":"success"},{"item":"ref-napi","response":"success"},{"item":"ref-struct","response":"success"},{"item":"ref-struct-di","response":"success"},{"item":"ref-union","response":"success"},{"item":"ref-union-di","response":"success"},{"item":"reflexbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"reflux","response":"success"},{"item":"refractor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"refresh-fetch","response":"success"},{"item":"registry-auth-token","response":"success"},{"item":"regression","response":"success"},{"item":"rehype-react","response":"success"},{"item":"relateurl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"relaxed-json","response":"success"},{"item":"relay-compiler","response":"success"},{"item":"relay-config","response":"success"},{"item":"relay-runtime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"relay-test-utils","response":"success"},{"item":"rellax","response":"success"},{"item":"remarkable","response":"success"},{"item":"remote-origin-url","response":"success"},{"item":"remote-redux-devtools","response":"success"},{"item":"remotedev-serialize","response":"success"},{"item":"remove-markdown","response":"success"},{"item":"rename","response":"success"},{"item":"repeat-element","response":"success"},{"item":"repeat-string","response":"success"},{"item":"repeating","response":"success"},{"item":"replace-ext","response":"success"},{"item":"replacestream","response":"success"},{"item":"request","response":"success"},{"item":"request-as-curl","response":"success"},{"item":"request-debug","response":"success"},{"item":"request-ip","response":"success"},{"item":"request-promise","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"request-promise-native","response":"success"},{"item":"request-stats","response":"success"},{"item":"requestidlecallback","response":"success"},{"item":"requestretry","response":"success"},{"item":"require-dir","response":"success"},{"item":"require-directory","response":"success"},{"item":"require-from-string","response":"success"},{"item":"require-relative","response":"success"},{"item":"requireindex","response":"success"},{"item":"requirejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'Require', but here has type 'NodeRequire'.\n../DefinitelyTyped/types/node/module.d.ts(57,14): error TS2300: Duplicate identifier 'Module'.\n../DefinitelyTyped/types/requirejs/index.d.ts(38,11): error TS2300: Duplicate identifier 'Module'.\n"},{"item":"requirejs-domready","response":"success"},{"item":"requires-port","response":"success"},{"item":"resemblejs","response":"success"},{"item":"reserved-words","response":"success"},{"item":"reservoir","response":"success"},{"item":"resize-img","response":"success"},{"item":"resize-observer-browser","response":"success"},{"item":"resolve","response":"success"},{"item":"resolve-options","response":"success"},{"item":"resolve-protobuf-schema","response":"success"},{"item":"resourcejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"response-time","response":"success"},{"item":"responselike","response":"success"},{"item":"rest","response":"success"},{"item":"restangular","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"restful.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"restify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restify-cookies","response":"success"},{"item":"restify-cors-middleware","response":"success"},{"item":"restify-errors","response":"success"},{"item":"restify-plugins","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restler","response":"success"},{"item":"restling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"rethinkdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"retinajs","response":"success"},{"item":"retry","response":"success"},{"item":"retry-as-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"revalidate","response":"success"},{"item":"revalidator","response":"success"},{"item":"reveal","response":"success"},{"item":"rewire","response":"success"},{"item":"rfc2047","response":"success"},{"item":"rfdc","response":"success"},{"item":"rgrove__parse-xml","response":"success"},{"item":"rheostat","response":"success"},{"item":"rickshaw","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/rickshaw"},{"item":"right-align","response":"success"},{"item":"rijndael-js","response":"success"},{"item":"rimraf","response":"success"},{"item":"ringbufferjs","response":"success"},{"item":"riot-api-nodejs","response":"success"},{"item":"riot-games-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"riot-route","response":"success"},{"item":"riotcontrol","response":"success"},{"item":"riotjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ripemd160","response":"success"},{"item":"rison","response":"success"},{"item":"rivets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rmc-drawer","response":"success"},{"item":"rmfr","response":"success"},{"item":"rn-app-upgrade","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"rn-fetch-blob","response":"success"},{"item":"roarr","response":"success"},{"item":"robust-point-in-polygon","response":"success"},{"item":"rocksdb","response":"success"},{"item":"rockset","response":"success"},{"item":"roll","response":"success"},{"item":"rolling-rate-limiter","response":"success"},{"item":"rollup-plugin-buble","response":"success"},{"item":"rollup-plugin-json","response":"success"},{"item":"rollup-plugin-node-builtins","response":"success"},{"item":"rollup-plugin-node-globals","response":"success"},{"item":"rollup-plugin-peer-deps-external","response":"success"},{"item":"rollup-plugin-postcss","response":"success"},{"item":"rollup-plugin-progress","response":"success"},{"item":"rollup-plugin-size-snapshot","response":"success"},{"item":"rollup-plugin-sourcemaps","response":"success"},{"item":"rollup-plugin-url","response":"success"},{"item":"rollup-plugin-visualizer","response":"success"},{"item":"rollup__plugin-virtual","response":"success"},{"item":"roman-numerals","response":"success"},{"item":"ronomon__crypto-async","response":"success"},{"item":"rosie","response":"success"},{"item":"roslib","response":"success"},{"item":"route-parser","response":"success"},{"item":"routie","response":"success"},{"item":"rox-browser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-react-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"royalslider","response":"success"},{"item":"rpio","response":"success"},{"item":"rrc","response":"success"},{"item":"rsmq-worker","response":"success"},{"item":"rsocket-core","response":"success"},{"item":"rsocket-flowable","response":"success"},{"item":"rsocket-tcp-client","response":"success"},{"item":"rsocket-tcp-server","response":"success"},{"item":"rsocket-types","response":"success"},{"item":"rsocket-websocket-client","response":"success"},{"item":"rsocket-websocket-server","response":"success"},{"item":"rss","response":"success"},{"item":"rsvp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertyDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null"},{"item":"rsync","response":"success"},{"item":"rtl-detect","response":"success"},{"item":"rtlcss","response":"success"},{"item":"rtp-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rtree","response":"success"},{"item":"run-parallel","response":"success"},{"item":"run-parallel-limit","response":"success"},{"item":"run-sequence","response":"success"},{"item":"runes","response":"success"},{"item":"rwlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"rx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-core","response":"success"},{"item":"rx-core-binding","response":"success"},{"item":"rx-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n"},{"item":"rx-lite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-aggregates","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-backpressure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-coincidence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-experimental","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-joinpatterns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-virtualtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-node","response":"success"},{"item":"rx.wamp","response":"success"},{"item":"s3-download-stream","response":"success"},{"item":"s3-upload-stream","response":"success"},{"item":"s3-uploader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"s3rver","response":"success"},{"item":"sade","response":"success"},{"item":"safari-extension","response":"success"},{"item":"safari-extension-content","response":"success"},{"item":"safe-compare","response":"success"},{"item":"safe-json-stringify","response":"success"},{"item":"safe-regex","response":"success"},{"item":"safe-timers","response":"success"},{"item":"safer-buffer","response":"success"},{"item":"sails.io.js","response":"success"},{"item":"sailthru-client","response":"success"},{"item":"saml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"saml2-js","response":"success"},{"item":"saml20","response":"success"},{"item":"samlp","response":"success"},{"item":"sammy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sanctuary","response":"success"},{"item":"sandboxed-module","response":"success"},{"item":"sane","response":"success"},{"item":"sane-email-validation","response":"success"},{"item":"sanitize-html","response":"success"},{"item":"sanitizer","response":"success"},{"item":"sap__xsenv","response":"success"},{"item":"sarif","response":"success"},{"item":"sasl-anonymous","response":"success"},{"item":"sasl-digest-md5","response":"success"},{"item":"sasl-external","response":"success"},{"item":"sasl-plain","response":"success"},{"item":"sasl-scram-sha-1","response":"success"},{"item":"saslmechanisms","response":"success"},{"item":"saslprep","response":"success"},{"item":"sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sass-graph","response":"success"},{"item":"sat","response":"success"},{"item":"satnav","response":"success"},{"item":"save-csv","response":"success"},{"item":"sawtooth-sdk","response":"success"},{"item":"sax","response":"success"},{"item":"sax-stream","response":"success"},{"item":"saywhen","response":"success"},{"item":"sbd","response":"success"},{"item":"sc-auth","response":"success"},{"item":"sc-broker","response":"success"},{"item":"sc-broker-cluster","response":"success"},{"item":"sc-channel","response":"success"},{"item":"sc-errors","response":"success"},{"item":"sc-framework-health-check","response":"success"},{"item":"sc-hot-reboot","response":"success"},{"item":"scalike","response":"success"},{"item":"scc-broker-client","response":"success"},{"item":"schedule","response":"success"},{"item":"scheduler","response":"success"},{"item":"schema-registry","response":"success"},{"item":"schwifty","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"scoped-http-client","response":"success"},{"item":"scrambo","response":"success"},{"item":"screeps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"screeps-profiler","response":"success"},{"item":"script-ext-html-webpack-plugin","response":"success"},{"item":"scriptable-ios","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scriptjs","response":"success"},{"item":"scroll","response":"success"},{"item":"scroll-into-view","response":"success"},{"item":"scroll-to-element","response":"success"},{"item":"scrollbooster","response":"success"},{"item":"scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scrollparent","response":"success"},{"item":"scrollreveal","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"secure-json-parse","response":"success"},{"item":"secure-password","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"secure-random-password","response":"success"},{"item":"seed-random","response":"success"},{"item":"seededshuffle","response":"success"},{"item":"seedrandom","response":"success"},{"item":"seen","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"segment-analytics","response":"success"},{"item":"select2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"selectables","response":"success"},{"item":"selectize","response":"success"},{"item":"selenium-standalone","response":"success"},{"item":"selenium-webdriver","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"semantic-release","response":"success"},{"item":"semantic-ui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/semantic-ui"},{"item":"semantic-ui-accordion","response":"success"},{"item":"semantic-ui-api","response":"success"},{"item":"semantic-ui-checkbox","response":"success"},{"item":"semantic-ui-dimmer","response":"success"},{"item":"semantic-ui-dropdown","response":"success"},{"item":"semantic-ui-embed","response":"success"},{"item":"semantic-ui-form","response":"success"},{"item":"semantic-ui-modal","response":"success"},{"item":"semantic-ui-nag","response":"success"},{"item":"semantic-ui-popup","response":"success"},{"item":"semantic-ui-progress","response":"success"},{"item":"semantic-ui-rating","response":"success"},{"item":"semantic-ui-search","response":"success"},{"item":"semantic-ui-shape","response":"success"},{"item":"semantic-ui-sidebar","response":"success"},{"item":"semantic-ui-site","response":"success"},{"item":"semantic-ui-sticky","response":"success"},{"item":"semantic-ui-tab","response":"success"},{"item":"semantic-ui-transition","response":"success"},{"item":"semantic-ui-visibility","response":"success"},{"item":"semaphore","response":"success"},{"item":"semver","response":"success"},{"item":"semver-compare","response":"success"},{"item":"semver-sort","response":"success"},{"item":"semver-stable","response":"success"},{"item":"semver-utils","response":"success"},{"item":"sencha_touch","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"send","response":"success"},{"item":"sendmail","response":"success"},{"item":"seneca","response":"success"},{"item":"sentry__webpack-plugin","response":"success"},{"item":"sequelize","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sequelize-cursor-pagination","response":"success"},{"item":"sequelize-fixtures","response":"success"},{"item":"sequencify","response":"success"},{"item":"sequester","response":"success"},{"item":"serialize-javascript","response":"success"},{"item":"serialport","response":"success"},{"item":"serve-favicon","response":"success"},{"item":"serve-handler","response":"success"},{"item":"serve-index","response":"success"},{"item":"serve-static","response":"success"},{"item":"server","response":"success"},{"item":"server-destroy","response":"success"},{"item":"serverless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"serverless-jest-plugin","response":"success"},{"item":"service-worker-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(15,32): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(26,18): error TS2304: Cannot find name 'Client'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(44,34): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(47,50): error TS2304: Cannot find name 'PushEvent'.\n"},{"item":"servicenow","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow/index.d.ts(71,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"servicenow-london","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/servicenow-london\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow-london/Workflow.d.ts(1,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"serviceworker-webpack-plugin","response":"success"},{"item":"session-file-store","response":"success"},{"item":"set-cookie-parser","response":"success"},{"item":"set-interval-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"set-link","response":"success"},{"item":"set-value","response":"success"},{"item":"setasap","response":"success"},{"item":"setimmediate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"settings","response":"success"},{"item":"setup-polly-jest","response":"success"},{"item":"sha","response":"success"},{"item":"sha.js","response":"success"},{"item":"sha1","response":"success"},{"item":"sha256","response":"success"},{"item":"shallow-equals","response":"success"},{"item":"shallowequal","response":"success"},{"item":"shapefile","response":"success"},{"item":"sharedb","response":"success"},{"item":"sharepoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'kind' of undefined\n"},{"item":"sharp","response":"success"},{"item":"shasum","response":"success"},{"item":"shebang-command","response":"success"},{"item":"sheetify","response":"success"},{"item":"shell-escape","response":"success"},{"item":"shell-quote","response":"success"},{"item":"shelljs","response":"success"},{"item":"shelljs-exec-proxy","response":"success"},{"item":"shevyjs","response":"success"},{"item":"shimmer","response":"success"},{"item":"shipit-cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shipit-utils","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shopify-buy","response":"success"},{"item":"shorten-repo-url","response":"success"},{"item":"shortid","response":"success"},{"item":"shot","response":"success"},{"item":"should-sinon","response":"success"},{"item":"showdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"shpjs","response":"success"},{"item":"shrink-ray","response":"success"},{"item":"shuffle-array","response":"success"},{"item":"shuffle-seed","response":"success"},{"item":"sic-ecies","response":"success"},{"item":"sic-list","response":"success"},{"item":"siema","response":"success"},{"item":"siesta","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sigmajs","response":"success"},{"item":"sigmund","response":"success"},{"item":"signal-exit","response":"success"},{"item":"signale","response":"success"},{"item":"signalfx","response":"success"},{"item":"signalr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"signalr-no-jquery","response":"success"},{"item":"signals","response":"success"},{"item":"signature_pad","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simmerjs","response":"success"},{"item":"simonwep__selection-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simpl-schema","response":"success"},{"item":"simple-assign","response":"success"},{"item":"simple-cw-node","response":"success"},{"item":"simple-icons","response":"success"},{"item":"simple-lru","response":"success"},{"item":"simple-mock","response":"success"},{"item":"simple-oauth2","response":"success"},{"item":"simple-peer","response":"success"},{"item":"simple-query-string","response":"success"},{"item":"simple-url-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simple-websocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simple-xml","response":"success"},{"item":"simplebar","response":"success"},{"item":"simplecrawler","response":"success"},{"item":"simplemde","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simplesmtp","response":"success"},{"item":"simplestorage.js","response":"success"},{"item":"simulant","response":"success"},{"item":"single-line-log","response":"success"},{"item":"single-spa-react","response":"success"},{"item":"sinon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sinon-as-promised","response":"success"},{"item":"sinon-chai","response":"success"},{"item":"sinon-chrome","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sinon-express-mock","response":"success"},{"item":"sinon-mongoose","response":"success"},{"item":"sinon-stub-promise","response":"success"},{"item":"sinon-test","response":"success"},{"item":"sinonjs__fake-timers","response":"success"},{"item":"sipml","response":"success"},{"item":"sitemap2","response":"success"},{"item":"six-runtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sizeof","response":"success"},{"item":"sizzle","response":"success"},{"item":"sjcl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"skatejs","response":"success"},{"item":"sketchapp","response":"success"},{"item":"ski","response":"success"},{"item":"skmeans","response":"success"},{"item":"skyway","response":"success"},{"item":"slack-mock","response":"success"},{"item":"slack-node","response":"success"},{"item":"slack-winston","response":"success"},{"item":"slackdown","response":"success"},{"item":"slackify-html","response":"success"},{"item":"slate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-base64-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-html-serializer","response":"success"},{"item":"slate-irc","response":"success"},{"item":"slate-plain-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slate-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sleep","response":"success"},{"item":"slice-ansi","response":"success"},{"item":"slick-carousel","response":"success"},{"item":"slickgrid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slideout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"slimerjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(431,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(432,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(433,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(434,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(435,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"sloc","response":"success"},{"item":"slocket","response":"success"},{"item":"slonik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"slug","response":"success"},{"item":"sm-crypto","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-fox-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-truncate","response":"success"},{"item":"smartwizard","response":"success"},{"item":"smooth-scroll","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"smoothscroll-polyfill","response":"success"},{"item":"smpte-timecode","response":"success"},{"item":"smshelper","response":"success"},{"item":"smtp-server","response":"success"},{"item":"smtpapi","response":"success"},{"item":"snakecase-keys","response":"success"},{"item":"snappy","response":"success"},{"item":"snapsvg","response":"success"},{"item":"snazzy-info-window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snekfetch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snowball-stemmers","response":"success"},{"item":"sns-validator","response":"success"},{"item":"sntp","response":"success"},{"item":"socket.io","response":"success"},{"item":"socket.io-client","response":"success"},{"item":"socket.io-emitter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"socket.io-file","response":"success"},{"item":"socket.io-p2p","response":"success"},{"item":"socket.io-parser","response":"success"},{"item":"socket.io-redis","response":"success"},{"item":"socket.io.users","response":"success"},{"item":"socketcluster","response":"success"},{"item":"socketcluster-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"socketcluster-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"socketio-jwt","response":"success"},{"item":"socketio-jwt-auth","response":"success"},{"item":"socketio-wildcard","response":"success"},{"item":"socketty","response":"success"},{"item":"sockjs","response":"success"},{"item":"sockjs-client","response":"success"},{"item":"sodium-native","response":"success"},{"item":"solid-auth-client","response":"success"},{"item":"solid__react","response":"success"},{"item":"solr-client","response":"success"},{"item":"solution-center-communicator","response":"success"},{"item":"sonic-boom","response":"success"},{"item":"sort-array","response":"success"},{"item":"sort-object-keys","response":"success"},{"item":"sortablejs","response":"success"},{"item":"sorted-object","response":"success"},{"item":"sortobject","response":"success"},{"item":"soundjs","response":"success"},{"item":"soundmanager2","response":"success"},{"item":"soupbintcp","response":"success"},{"item":"source-list-map","response":"success"},{"item":"source-map-support","response":"success"},{"item":"space-pen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"spark-md5","response":"success"},{"item":"sparkpost","response":"success"},{"item":"sparql-http-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"sparqljs","response":"success"},{"item":"sparse-bitfield","response":"success"},{"item":"spatialite","response":"success"},{"item":"spdx-correct","response":"success"},{"item":"spdx-satisfies","response":"success"},{"item":"spdy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"speakeasy","response":"success"},{"item":"speakingurl","response":"success"},{"item":"spected","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"spectrogram","response":"success"},{"item":"spectrum","response":"success"},{"item":"spellchecker","response":"success"},{"item":"split","response":"success"},{"item":"split.js","response":"success"},{"item":"split2","response":"success"},{"item":"splitpanes","response":"success"},{"item":"splunk-bunyan-logger","response":"success"},{"item":"splunk-logging","response":"success"},{"item":"spotify-api","response":"success"},{"item":"spotify-node-applescript","response":"success"},{"item":"spotify-web-api-node","response":"success"},{"item":"spotify-web-playback-sdk","response":"success"},{"item":"sprintf","response":"success"},{"item":"sprintf-js","response":"success"},{"item":"sql-bricks","response":"success"},{"item":"sql-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sql-template","response":"success"},{"item":"sql.js","response":"success"},{"item":"sqlanywhere","response":"success"},{"item":"sqlite3","response":"success"},{"item":"sqlite3-promise","response":"success"},{"item":"sqlstring","response":"success"},{"item":"sqs-producer","response":"success"},{"item":"square-connect","response":"success"},{"item":"squirejs","response":"success"},{"item":"squirrelly","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"srp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"ssb-keys","response":"success"},{"item":"ssdeep","response":"success"},{"item":"ssh-key-decrypt","response":"success"},{"item":"ssh2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ssh2-sftp-client","response":"success"},{"item":"ssh2-streams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sshpk","response":"success"},{"item":"ssri","response":"success"},{"item":"stack-mapper","response":"success"},{"item":"stack-trace","response":"success"},{"item":"stack-utils","response":"success"},{"item":"stale-lru-cache","response":"success"},{"item":"stampit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"stamplay-js-sdk","response":"success"},{"item":"standard-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"standard-error","response":"success"},{"item":"standard-http-error","response":"success"},{"item":"standard-version","response":"success"},{"item":"start-server-webpack-plugin","response":"success"},{"item":"starwars-names","response":"success"},{"item":"stat-mode","response":"success"},{"item":"static-eval","response":"success"},{"item":"staticmaps","response":"success"},{"item":"stats-lite","response":"success"},{"item":"stats.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"statsd-client","response":"success"},{"item":"statuses","response":"success"},{"item":"std-mocks","response":"success"},{"item":"stdin","response":"success"},{"item":"stdout-stream","response":"success"},{"item":"steam","response":"success"},{"item":"steam-client","response":"success"},{"item":"steam-login","response":"success"},{"item":"steam-totp","response":"success"},{"item":"steamid","response":"success"},{"item":"steed","response":"success"},{"item":"stemmer","response":"success"},{"item":"sticky-cluster","response":"success"},{"item":"sticky-session","response":"success"},{"item":"stompit","response":"success"},{"item":"stompjs","response":"success"},{"item":"stoppable","response":"success"},{"item":"stopword","response":"success"},{"item":"storage-helper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"store","response":"success"},{"item":"storybook-addon-jsx","response":"success"},{"item":"storybook-react-router","response":"success"},{"item":"storybook-readme","response":"success"},{"item":"storybook__addon-info","response":"success"},{"item":"storybook__polymer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"strange","response":"success"},{"item":"stream-array","response":"success"},{"item":"stream-buffers","response":"success"},{"item":"stream-chain","response":"success"},{"item":"stream-csv-as-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-demux","response":"success"},{"item":"stream-each","response":"success"},{"item":"stream-fork","response":"success"},{"item":"stream-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-meter","response":"success"},{"item":"stream-series","response":"success"},{"item":"stream-shift","response":"success"},{"item":"stream-throttle","response":"success"},{"item":"stream-to-array","response":"success"},{"item":"stream-to-promise","response":"success"},{"item":"stream-to-string","response":"success"},{"item":"streaming-json-stringify","response":"success"},{"item":"streamjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"streamtest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stremio-addon-sdk","response":"success"},{"item":"strftime","response":"success"},{"item":"strict-uri-encode","response":"success"},{"item":"strikeentco__get","response":"success"},{"item":"string","response":"success"},{"item":"string-format","response":"success"},{"item":"string-hash","response":"success"},{"item":"string-pixel-width","response":"success"},{"item":"string-placeholder","response":"success"},{"item":"string-replace-webpack-plugin","response":"success"},{"item":"string-similarity","response":"success"},{"item":"string-strip-html","response":"success"},{"item":"string-template","response":"success"},{"item":"string_score","response":"success"},{"item":"stringify-object","response":"success"},{"item":"strip-color","response":"success"},{"item":"stripe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripe-checkout","response":"success"},{"item":"stripe-v2","response":"success"},{"item":"stripe-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripejs","response":"success"},{"item":"strman","response":"success"},{"item":"strong-cluster-control","response":"success"},{"item":"strong-error-handler","response":"success"},{"item":"strong-log-transformer","response":"success"},{"item":"strophe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophe.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophejs-plugin-roster","response":"success"},{"item":"struct","response":"success"},{"item":"structured-source","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"stubby","response":"success"},{"item":"style-search","response":"success"},{"item":"styled-components","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"styled-jsx","response":"success"},{"item":"styled-react-modal","response":"success"},{"item":"styled-system","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styled-system__css","response":"success"},{"item":"styled-system__should-forward-prop","response":"success"},{"item":"styled-system__theme-get","response":"success"},{"item":"styled-theming","response":"success"},{"item":"stylelint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stylelint-webpack-plugin","response":"success"},{"item":"stylenames","response":"success"},{"item":"styletron-engine-atomic","response":"success"},{"item":"styletron-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styletron-standard","response":"success"},{"item":"stylus","response":"success"},{"item":"subleveldown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"subscribe-ui-event","response":"success"},{"item":"subtitle","response":"success"},{"item":"succinct","response":"success"},{"item":"sudokus","response":"success"},{"item":"suitescript","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"summernote","response":"success"},{"item":"sumo-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"suncalc","response":"success"},{"item":"sunrise-sunset-js","response":"success"},{"item":"superagent","response":"success"},{"item":"superagent-bunyan","response":"success"},{"item":"superagent-no-cache","response":"success"},{"item":"superagent-prefix","response":"success"},{"item":"superagent-proxy","response":"success"},{"item":"supercluster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"supertest","response":"success"},{"item":"supertest-as-promised","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"supports-color","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svg-injector","response":"success"},{"item":"svg-intersections","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"svg-parser","response":"success"},{"item":"svg-path-bounding-box","response":"success"},{"item":"svg-path-parser","response":"success"},{"item":"svg-sprite","response":"success"},{"item":"svg-sprite-loader","response":"success"},{"item":"svg2png","response":"success"},{"item":"svg4everybody","response":"success"},{"item":"svgjs.draggable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svgjs.resize","response":"success"},{"item":"svgo","response":"success"},{"item":"svgr__rollup","response":"success"},{"item":"sw-precache","response":"success"},{"item":"sw-precache-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"swag","response":"success"},{"item":"swagger-express-middleware","response":"success"},{"item":"swagger-express-mw","response":"success"},{"item":"swagger-express-validator","response":"success"},{"item":"swagger-hapi","response":"success"},{"item":"swagger-jsdoc","response":"success"},{"item":"swagger-node-runner","response":"success"},{"item":"swagger-restify-mw","response":"success"},{"item":"swagger-sails-hook","response":"success"},{"item":"swagger-schema-official","response":"success"},{"item":"swagger-stats","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swagger-tools","response":"success"},{"item":"swagger-ui-dist","response":"success"},{"item":"swagger-ui-express","response":"success"},{"item":"swagger-ui-react","response":"success"},{"item":"swaggerize-express","response":"success"},{"item":"swe-validation","response":"success"},{"item":"swfobject","response":"success"},{"item":"swiftclick","response":"success"},{"item":"swig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swig-email-templates","response":"success"},{"item":"swipe","response":"success"},{"item":"swiper","response":"success"},{"item":"swipeview","response":"success"},{"item":"switchery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"swiz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sybase-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"sylvester","response":"success"},{"item":"sylvester-es6","response":"success"},{"item":"symbol-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"symlink-or-copy","response":"success"},{"item":"synaptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"syntax-error","response":"success"},{"item":"syslog-client","response":"success"},{"item":"systemjs","response":"success"},{"item":"tabbable","response":"success"},{"item":"table","response":"success"},{"item":"table-resolver","response":"success"},{"item":"tableau","response":"success"},{"item":"tableify","response":"success"},{"item":"tablesorter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"tabtab","response":"success"},{"item":"tabulator","response":"success"},{"item":"tabulator-tables","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"tail","response":"success"},{"item":"tampermonkey","response":"success"},{"item":"tapable","response":"success"},{"item":"tape","response":"success"},{"item":"tape-async","response":"success"},{"item":"tape-catch","response":"success"},{"item":"tape-promise","response":"success"},{"item":"tar","response":"success"},{"item":"tar-fs","response":"success"},{"item":"tar-stream","response":"success"},{"item":"tarantool-driver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"targz","response":"success"},{"item":"task-graph-runner","response":"success"},{"item":"task-worklet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"tcp-ping","response":"success"},{"item":"tcp-port-used","response":"success"},{"item":"tdweb","response":"success"},{"item":"tea-merge","response":"success"},{"item":"teddy","response":"success"},{"item":"tedious","response":"success"},{"item":"tedious-connection-pool","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"teechart","response":"success"}] \ No newline at end of file diff --git a/data/definitelyTyped/list.json b/data/definitelyTyped/list.json index cdb3763ef..58cfb5d4d 100644 --- a/data/definitelyTyped/list.json +++ b/data/definitelyTyped/list.json @@ -1 +1 @@ -[{"id":"756c5f8d-be26-43fc-8831-0a12df4c972e.json","initialDate":"2020-01-11T17:17:58.333Z","lastUpdatedDate":"2020-01-16T00:31:39.270Z","typesProcessed":9999},{"id":"9749238a-cba9-4abd-9fac-f9d0d4ef90e3.json","initialDate":"2020-01-17T20:34:24.904Z","lastUpdatedDate":"2020-02-01T00:40:31.064Z","typesProcessed":9999},{"id":"45e2213b-fa9c-40d1-b066-89413f063ee3.json","initialDate":"2020-02-01T17:11:06.944Z","lastUpdatedDate":"2020-03-07T00:20:59.201Z","typesProcessed":6549},{"id":"532444dd-7414-42ad-8d30-3da2d2e6c9af.json","initialDate":"2020-03-08T08:08:21.638Z","lastUpdatedDate":"2020-03-17T00:55:23.522Z","typesProcessed":9999},{"id":"59fcd50b-ad93-43d9-8777-45cf4cb83abe.json","initialDate":"2020-03-29T00:47:04.041Z","lastUpdatedDate":"2020-04-10T00:53:38.538Z","typesProcessed":5500}] \ No newline at end of file +[{"id":"756c5f8d-be26-43fc-8831-0a12df4c972e.json","initialDate":"2020-01-11T17:17:58.333Z","lastUpdatedDate":"2020-01-16T00:31:39.270Z","typesProcessed":9999},{"id":"9749238a-cba9-4abd-9fac-f9d0d4ef90e3.json","initialDate":"2020-01-17T20:34:24.904Z","lastUpdatedDate":"2020-02-01T00:40:31.064Z","typesProcessed":9999},{"id":"45e2213b-fa9c-40d1-b066-89413f063ee3.json","initialDate":"2020-02-01T17:11:06.944Z","lastUpdatedDate":"2020-03-07T00:20:59.201Z","typesProcessed":6549},{"id":"532444dd-7414-42ad-8d30-3da2d2e6c9af.json","initialDate":"2020-03-08T08:08:21.638Z","lastUpdatedDate":"2020-03-17T00:55:23.522Z","typesProcessed":9999},{"id":"59fcd50b-ad93-43d9-8777-45cf4cb83abe.json","initialDate":"2020-03-29T00:47:04.041Z","lastUpdatedDate":"2020-04-12T00:49:14.423Z","typesProcessed":6000}] \ No newline at end of file From 788acd33249da2d7f277adcf08eb23c13896c476 Mon Sep 17 00:00:00 2001 From: typescripttdd <59508597+typescripttdd@users.noreply.github.com> Date: Mon, 13 Apr 2020 08:16:28 +0100 Subject: [PATCH 38/43] Add DefinitelyTyped Tests data (#304) --- data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json | 2 +- data/definitelyTyped/list.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json b/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json index 7de51327e..b95d147f9 100644 --- a/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json +++ b/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json @@ -1 +1 @@ -[{"item":"7zip-min","response":"success"},{"item":"a-big-triangle","response":"success"},{"item":"a11y-dialog","response":"success"},{"item":"abbrev","response":"success"},{"item":"abs","response":"success"},{"item":"absolute","response":"success"},{"item":"abstract-leveldown","response":"success"},{"item":"acc-wizard","response":"success"},{"item":"accept","response":"success"},{"item":"accept-language-parser","response":"success"},{"item":"accepts","response":"success"},{"item":"accounting","response":"success"},{"item":"accurate-interval","response":"success"},{"item":"ace","response":"success"},{"item":"ace-diff","response":"success"},{"item":"acl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"acorn","response":"success"},{"item":"actioncable","response":"success"},{"item":"activedirectory2","response":"success"},{"item":"activestorage","response":"success"},{"item":"activex-access","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adox","response":"success"},{"item":"activex-dao","response":"success"},{"item":"activex-diskquota","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-excel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-faxcomexlib","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-infopath","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-interop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-iwshruntimelibrary","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"activex-libreoffice","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-msforms","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-mshtml","response":"success"},{"item":"activex-msxml2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-office","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-outlook","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-powerpoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-scripting","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-shdocvw","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-shell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-stdole","response":"success"},{"item":"activex-vbide","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-wia","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-word","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"adal-angular","response":"success"},{"item":"add-zero","response":"success"},{"item":"add2home","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/add2home"},{"item":"adhan","response":"success"},{"item":"adlib","response":"success"},{"item":"adm-zip","response":"success"},{"item":"adone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aes-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aframe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ag-channel","response":"success"},{"item":"ag-simple-broker","response":"success"},{"item":"agenda","response":"success"},{"item":"agent-base","response":"success"},{"item":"agiledigital__mule-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"agilite","response":"success"},{"item":"agora-rtc-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"airbnb-prop-types","response":"success"},{"item":"airtable","response":"success"},{"item":"ajv-async","response":"success"},{"item":"ajv-errors","response":"success"},{"item":"ajv-keywords","response":"success"},{"item":"ajv-merge-patch","response":"success"},{"item":"ajv-pack","response":"success"},{"item":"akamai-edgeworkers","response":"success"},{"item":"akumina-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ale-url-parser","response":"success"},{"item":"alertify","response":"success"},{"item":"alex","response":"success"},{"item":"alexa-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"alexa-voice-service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"algebra.js","response":"success"},{"item":"algoliasearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"algoliasearch-helper","response":"success"},{"item":"ali-app","response":"success"},{"item":"ali-oss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"align-text","response":"success"},{"item":"alks-node","response":"success"},{"item":"all-the-package-names","response":"success"},{"item":"alloy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"allure-js-commons","response":"success"},{"item":"almost-equal","response":"success"},{"item":"alpha-bravo","response":"success"},{"item":"alt","response":"success"},{"item":"amap-js-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api"},{"item":"amap-js-api-arrival-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-autocomplete","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-city-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-control-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-district-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-driving","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geocoder","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geolocation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-heatmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-indoor-map","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-line-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map-type","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map3d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api-map3d"},{"item":"amap-js-api-overview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-place-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-riding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-scale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-station-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-tool-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-transfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amazon-cognito-auth-js","response":"success"},{"item":"amazon-connect-streams","response":"success"},{"item":"amazon-product-api","response":"success"},{"item":"amcharts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amp","response":"success"},{"item":"amp-message","response":"success"},{"item":"amphtml-validator","response":"success"},{"item":"amplifier","response":"success"},{"item":"amplify","response":"success"},{"item":"amplify-deferred","response":"success"},{"item":"amplitude-js","response":"success"},{"item":"amqp","response":"success"},{"item":"amqp-connection-manager","response":"success"},{"item":"amqp-rpc","response":"success"},{"item":"amqplib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"analytics-node","response":"success"},{"item":"anchor-js","response":"success"},{"item":"angular","response":"success"},{"item":"angular-agility","response":"success"},{"item":"angular-animate","response":"success"},{"item":"angular-aria","response":"success"},{"item":"angular-block-ui","response":"success"},{"item":"angular-bootstrap-calendar","response":"success"},{"item":"angular-bootstrap-lightbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-breadcrumb","response":"success"},{"item":"angular-clipboard","response":"success"},{"item":"angular-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-cookies","response":"success"},{"item":"angular-deferred-bootstrap","response":"success"},{"item":"angular-desktop-notification","response":"success"},{"item":"angular-dialog-service","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-environment","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-es","response":"success"},{"item":"angular-feature-flags","response":"success"},{"item":"angular-file-saver","response":"success"},{"item":"angular-file-upload","response":"success"},{"item":"angular-formly","response":"success"},{"item":"angular-fullscreen","response":"success"},{"item":"angular-gettext","response":"success"},{"item":"angular-google-analytics","response":"success"},{"item":"angular-gridster","response":"success"},{"item":"angular-growl-v2","response":"success"},{"item":"angular-hotkeys","response":"success"},{"item":"angular-http-auth","response":"success"},{"item":"angular-httpi","response":"success"},{"item":"angular-idle","response":"success"},{"item":"angular-jwt","response":"success"},{"item":"angular-load","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-loading-bar","response":"success"},{"item":"angular-local-storage","response":"success"},{"item":"angular-localforage","response":"success"},{"item":"angular-locker","response":"success"},{"item":"angular-material","response":"success"},{"item":"angular-media-queries","response":"success"},{"item":"angular-meteor","response":"success"},{"item":"angular-mocks","response":"success"},{"item":"angular-modal","response":"success"},{"item":"angular-notifications","response":"success"},{"item":"angular-notify","response":"success"},{"item":"angular-oauth2","response":"success"},{"item":"angular-odata-resources","response":"success"},{"item":"angular-pdfjs-viewer","response":"success"},{"item":"angular-permission","response":"success"},{"item":"angular-promise-tracker","response":"success"},{"item":"angular-q-extras","response":"success"},{"item":"angular-q-spread","response":"success"},{"item":"angular-resource","response":"success"},{"item":"angular-route","response":"success"},{"item":"angular-sanitize","response":"success"},{"item":"angular-scenario","response":"success"},{"item":"angular-scroll","response":"success"},{"item":"angular-signalr-hub","response":"success"},{"item":"angular-spinner","response":"success"},{"item":"angular-storage","response":"success"},{"item":"angular-strap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-toastr","response":"success"},{"item":"angular-toasty","response":"success"},{"item":"angular-tooltips","response":"success"},{"item":"angular-translate","response":"success"},{"item":"angular-ui-bootstrap","response":"success"},{"item":"angular-ui-notification","response":"success"},{"item":"angular-ui-router","response":"success"},{"item":"angular-ui-scroll","response":"success"},{"item":"angular-ui-sortable","response":"success"},{"item":"angular-ui-tree","response":"success"},{"item":"angular-websocket","response":"success"},{"item":"angular-wizard","response":"success"},{"item":"angular-xeditable","response":"success"},{"item":"angular.throttle","response":"success"},{"item":"angularfire","response":"success"},{"item":"angularlocalstorage","response":"success"},{"item":"angulartics","response":"success"},{"item":"animation-frame","response":"success"},{"item":"animejs","response":"success"},{"item":"annyang","response":"success"},{"item":"ansi","response":"success"},{"item":"ansi-escape-sequences","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ansi-styles","response":"success"},{"item":"ansicolors","response":"success"},{"item":"antlr4","response":"success"},{"item":"antlr4-autosuggest","response":"success"},{"item":"any-db","response":"success"},{"item":"any-db-transaction","response":"success"},{"item":"anymatch","response":"success"},{"item":"anyproxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aos","response":"success"},{"item":"apex.js","response":"success"},{"item":"api-error-handler","response":"success"},{"item":"apicache","response":"success"},{"item":"apicalypse","response":"success"},{"item":"apigee-access","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apimocker","response":"success"},{"item":"apollo-codegen","response":"success"},{"item":"apollo-upload-client","response":"success"},{"item":"apostrophe","response":"success"},{"item":"app-module-path","response":"success"},{"item":"app-root-dir","response":"success"},{"item":"app-root-path","response":"success"},{"item":"appdmg","response":"success"},{"item":"append-query","response":"success"},{"item":"appframework","response":"success"},{"item":"apple-mapkit-js","response":"success"},{"item":"apple-music-api","response":"success"},{"item":"apple-signin-api","response":"success"},{"item":"applepayjs","response":"success"},{"item":"appletvjs","response":"success"},{"item":"applicationinsights-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apptimize__apptimize-web-sdk","response":"success"},{"item":"aqb","response":"success"},{"item":"arangodb","response":"success"},{"item":"arbiter","response":"success"},{"item":"arcgis-js-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"arcgis-rest-api","response":"success"},{"item":"arcgis-to-geojson-utils","response":"success"},{"item":"architect","response":"success"},{"item":"archiver","response":"success"},{"item":"archy","response":"success"},{"item":"are-we-there-yet","response":"success"},{"item":"argon2-browser","response":"success"},{"item":"argparse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"args","response":"success"},{"item":"argv","response":"success"},{"item":"aria-query","response":"success"},{"item":"arr-diff","response":"success"},{"item":"arr-union","response":"success"},{"item":"array-binarysearch.closest","response":"success"},{"item":"array-find-index","response":"success"},{"item":"array-foreach","response":"success"},{"item":"array-initial","response":"success"},{"item":"array-sort","response":"success"},{"item":"array-unique","response":"success"},{"item":"array.from","response":"success"},{"item":"array.prototype.flat","response":"success"},{"item":"array.prototype.flatmap","response":"success"},{"item":"artillery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'find' of undefined\n"},{"item":"asana","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asap","response":"success"},{"item":"ascii-art","response":"success"},{"item":"ascii2mathml","response":"success"},{"item":"asciichart","response":"success"},{"item":"asciify","response":"success"},{"item":"asenv","response":"success"},{"item":"asn1","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asn1js","response":"success"},{"item":"aspnet-identity-pw","response":"success"},{"item":"assert","response":"success"},{"item":"assert-equal-jsx","response":"success"},{"item":"assert-plus","response":"success"},{"item":"assertsharp","response":"success"},{"item":"assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n"},{"item":"astring","response":"success"},{"item":"async","response":"success"},{"item":"async-busboy","response":"success"},{"item":"async-cache","response":"success"},{"item":"async-eventemitter","response":"success"},{"item":"async-iterable-stream","response":"success"},{"item":"async-lock","response":"success"},{"item":"async-polling","response":"success"},{"item":"async-retry","response":"success"},{"item":"async-stream-emitter","response":"success"},{"item":"async-stream-generator","response":"success"},{"item":"async-writer","response":"success"},{"item":"async.nexttick","response":"success"},{"item":"asynciterator","response":"success"},{"item":"athenajs","response":"success"},{"item":"atlaskit__button","response":"success"},{"item":"atlaskit__calendar","response":"success"},{"item":"atlaskit__feedback-collector","response":"success"},{"item":"atlaskit__inline-edit","response":"success"},{"item":"atlaskit__layer","response":"success"},{"item":"atlaskit__single-select","response":"success"},{"item":"atlaskit__tree","response":"success"},{"item":"atlassian-crowd-client","response":"success"},{"item":"atmosphere.js","response":"success"},{"item":"atob","response":"success"},{"item":"atob-lite","response":"success"},{"item":"atom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"atom-keymap","response":"success"},{"item":"atom-mocha-test-runner","response":"success"},{"item":"atpl","response":"success"},{"item":"audio-context","response":"success"},{"item":"audio-play","response":"success"},{"item":"audiobuffer-to-wav","response":"success"},{"item":"audiosprite","response":"success"},{"item":"auth-header","response":"success"},{"item":"auth0","response":"success"},{"item":"auth0-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"auth0-js","response":"success"},{"item":"auth0-lock","response":"success"},{"item":"auth0.widget","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"authenticator","response":"success"},{"item":"auto-launch","response":"success"},{"item":"auto-sni","response":"success"},{"item":"autobahn","response":"success"},{"item":"autocannon","response":"success"},{"item":"autoprefixer","response":"success"},{"item":"autoprefixer-core","response":"success"},{"item":"autosize","response":"success"},{"item":"autosuggest-highlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/autosuggest-highlight"},{"item":"avoscloud-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"await-timeout","response":"success"},{"item":"awesomplete","response":"success"},{"item":"aws-iot-device-sdk","response":"success"},{"item":"aws-lambda","response":"success"},{"item":"aws-param-store","response":"success"},{"item":"aws-regions","response":"success"},{"item":"aws-serverless-express","response":"success"},{"item":"aws4","response":"success"},{"item":"axe-webdriverjs","response":"success"},{"item":"axel","response":"success"},{"item":"axios-cancel","response":"success"},{"item":"axios-case-converter","response":"success"},{"item":"axios-curlirize","response":"success"},{"item":"axios-token-interceptor","response":"success"},{"item":"axon","response":"success"},{"item":"azdata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-kusto-data","response":"success"},{"item":"azure-mobile-services-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-sb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"b-spline","response":"success"},{"item":"b2a","response":"success"},{"item":"b64-lite","response":"success"},{"item":"b_","response":"success"},{"item":"babel-code-frame","response":"success"},{"item":"babel-core","response":"success"},{"item":"babel-generator","response":"success"},{"item":"babel-plugin-macros","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-plugin-react-pug","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/babel-plugin-react-pug"},{"item":"babel-plugin-syntax-jsx","response":"success"},{"item":"babel-template","response":"success"},{"item":"babel-traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-types","response":"success"},{"item":"babel-webpack-plugin","response":"success"},{"item":"babel__code-frame","response":"success"},{"item":"babel__core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel__generator","response":"success"},{"item":"babel__standalone","response":"success"},{"item":"babel__template","response":"success"},{"item":"babel__traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babelify","response":"success"},{"item":"babylon","response":"success"},{"item":"babylon-walk","response":"success"},{"item":"babyparse","response":"success"},{"item":"backbone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"backbone-associations","response":"success"},{"item":"backbone-fetch-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone-relational","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.layoutmanager","response":"success"},{"item":"backbone.localstorage","response":"success"},{"item":"backbone.marionette","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.paginator","response":"success"},{"item":"backbone.radio","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backlog-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"backo2","response":"success"},{"item":"backoff","response":"success"},{"item":"backstopjs","response":"success"},{"item":"bagpipes","response":"success"},{"item":"baidu-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"baidumap-web-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/baidumap-web-sdk"},{"item":"balanced-match","response":"success"},{"item":"bandagedbd__bdapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"barbellweights","response":"success"},{"item":"barcode","response":"success"},{"item":"bardjs","response":"success"},{"item":"base-64","response":"success"},{"item":"base16","response":"success"},{"item":"base64-arraybuffer","response":"success"},{"item":"base64-async","response":"success"},{"item":"base64-js","response":"success"},{"item":"base64-stream","response":"success"},{"item":"base64-url","response":"success"},{"item":"base64topdf","response":"success"},{"item":"bases","response":"success"},{"item":"bash-glob","response":"success"},{"item":"basic-auth","response":"success"},{"item":"basicauth-middleware","response":"success"},{"item":"basiclightbox","response":"success"},{"item":"batch-stream","response":"success"},{"item":"battery-level","response":"success"},{"item":"bayes-classifier","response":"success"},{"item":"bazinga-translator","response":"success"},{"item":"bchaddrjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bcp-47","response":"success"},{"item":"bcp-47-match","response":"success"},{"item":"bcrypt","response":"success"},{"item":"bcrypt-nodejs","response":"success"},{"item":"bcryptjs","response":"success"},{"item":"bdfjs","response":"success"},{"item":"beanstalkd","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"beanstalkd-worker","response":"success"},{"item":"bearcat-es6","response":"success"},{"item":"beats","response":"success"},{"item":"bech32","response":"success"},{"item":"behavior3","response":"success"},{"item":"bell","response":"success"},{"item":"benchmark","response":"success"},{"item":"bencode","response":"success"},{"item":"bent","response":"success"},{"item":"better-curry","response":"success"},{"item":"better-queue","response":"success"},{"item":"better-scroll","response":"success"},{"item":"better-sqlite3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"bezier-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"bgiframe","response":"success"},{"item":"bidirectional-map","response":"success"},{"item":"big.js","response":"success"},{"item":"bigi","response":"success"},{"item":"bigint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/bigint/index.d.ts(9,19): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(21,11): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(57,13): error TS2300: Duplicate identifier 'BigInt'.\n"},{"item":"bignum","response":"success"},{"item":"bigscreen","response":"success"},{"item":"bin-pack","response":"success"},{"item":"binary-parse-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"binary-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"binaryextensions","response":"success"},{"item":"bind-ponyfill","response":"success"},{"item":"bindings","response":"success"},{"item":"bintrees","response":"success"},{"item":"bip21","response":"success"},{"item":"bip38","response":"success"},{"item":"bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"bit-twiddle","response":"success"},{"item":"bitcore-lib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bittorrent-protocol","response":"success"},{"item":"bitwise-xor","response":"success"},{"item":"bl","response":"success"},{"item":"blacklist","response":"success"},{"item":"blake2","response":"success"},{"item":"blazor__javascript-interop","response":"success"},{"item":"blazy","response":"success"},{"item":"bleno","response":"success"},{"item":"blessed","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blip-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blissfuljs","response":"success"},{"item":"blob-stream","response":"success"},{"item":"blob-to-buffer","response":"success"},{"item":"blocked","response":"success"},{"item":"blockies","response":"success"},{"item":"blocks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"bloem","response":"success"},{"item":"bloom-filter","response":"success"},{"item":"bloomfilter","response":"success"},{"item":"blue-tape","response":"success"},{"item":"bluebird","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"bluebird-global","response":"success"},{"item":"bluebird-retry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"blueimp-load-image","response":"success"},{"item":"blueimp-md5","response":"success"},{"item":"bmp-js","response":"success"},{"item":"bn.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"body-parser","response":"success"},{"item":"body-parser-xml","response":"success"},{"item":"body-scroll-lock","response":"success"},{"item":"bonjour","response":"success"},{"item":"bookshelf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"boolify-string","response":"success"},{"item":"boom","response":"success"},{"item":"bootbox","response":"success"},{"item":"bootpag","response":"success"},{"item":"bootstrap","response":"success"},{"item":"bootstrap-3-typeahead","response":"success"},{"item":"bootstrap-colorpicker","response":"success"},{"item":"bootstrap-datepicker","response":"success"},{"item":"bootstrap-fileinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"bootstrap-growl-ifightcrime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-maxlength","response":"success"},{"item":"bootstrap-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"bootstrap-notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-select","response":"success"},{"item":"bootstrap-slider","response":"success"},{"item":"bootstrap-switch","response":"success"},{"item":"bootstrap-toggle","response":"success"},{"item":"bootstrap-touchspin","response":"success"},{"item":"bootstrap-treeview","response":"success"},{"item":"bootstrap-validator","response":"success"},{"item":"bootstrap.paginator","response":"success"},{"item":"bootstrap.timepicker","response":"success"},{"item":"bootstrap.v3.datetimepicker","response":"success"},{"item":"bootstrap3-dialog","response":"success"},{"item":"bounce.js","response":"success"},{"item":"box-intersect","response":"success"},{"item":"box2d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bpmn-moddle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"brace-expansion","response":"success"},{"item":"braces","response":"success"},{"item":"brainhubeu__react-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"braintree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"braintree-web","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"braintree-web-drop-in","response":"success"},{"item":"breeze","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bresenham","response":"success"},{"item":"bricks.js","response":"success"},{"item":"bristol","response":"success"},{"item":"bristol-sentry","response":"success"},{"item":"bro-fs","response":"success"},{"item":"brorand","response":"success"},{"item":"brotli-webpack-plugin","response":"success"},{"item":"browser-bunyan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"browser-fingerprint","response":"success"},{"item":"browser-harness","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'kind' of undefined\n"},{"item":"browser-image-compression","response":"success"},{"item":"browser-or-node","response":"success"},{"item":"browser-pack","response":"success"},{"item":"browser-report","response":"success"},{"item":"browser-resolve","response":"success"},{"item":"browser-sync","response":"success"},{"item":"browser-sync-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"browserify","response":"success"},{"item":"browserslist","response":"success"},{"item":"browserslist-useragent","response":"success"},{"item":"bs58","response":"success"},{"item":"bser","response":"success"},{"item":"bson","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"btoa","response":"success"},{"item":"btoa-lite","response":"success"},{"item":"buble","response":"success"},{"item":"bucks","response":"success"},{"item":"buffer-compare","response":"success"},{"item":"buffer-crc32","response":"success"},{"item":"buffer-equal","response":"success"},{"item":"buffer-from","response":"success"},{"item":"buffer-reader","response":"success"},{"item":"buffer-split","response":"success"},{"item":"buffer-xor","response":"success"},{"item":"bufferhelper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"buffers","response":"success"},{"item":"bufferstream","response":"success"},{"item":"build-output-script","response":"success"},{"item":"bull","response":"success"},{"item":"bull-arena","response":"success"},{"item":"bull-board","response":"success"},{"item":"bulma-calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"bump-regex","response":"success"},{"item":"bunnymq","response":"success"},{"item":"bunyan","response":"success"},{"item":"bunyan-blackhole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"bunyan-config","response":"success"},{"item":"bunyan-format","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"bunyan-logentries","response":"success"},{"item":"bunyan-prettystream","response":"success"},{"item":"bunyan-seq","response":"success"},{"item":"bunyan-winston-adapter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"burns","response":"success"},{"item":"busboy","response":"success"},{"item":"business-rules-engine","response":"success"},{"item":"bwip-js","response":"success"},{"item":"byline","response":"success"},{"item":"byte-range","response":"success"},{"item":"bytebuffer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"bytes","response":"success"},{"item":"bytewise","response":"success"},{"item":"c3","response":"success"},{"item":"cacache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cache-manager","response":"success"},{"item":"cacheable-request","response":"success"},{"item":"cached-path-relative","response":"success"},{"item":"cadesplugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"cal-heatmap","response":"success"},{"item":"calendar","response":"success"},{"item":"calidation","response":"success"},{"item":"callback-to-async-iterator","response":"success"},{"item":"caller","response":"success"},{"item":"callsite","response":"success"},{"item":"calq","response":"success"},{"item":"camelcase-keys-deep","response":"success"},{"item":"camo","response":"success"},{"item":"camunda-external-task-client-js","response":"success"},{"item":"cancan","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"caniuse-api","response":"success"},{"item":"caniuse-lite","response":"success"},{"item":"cannon","response":"success"},{"item":"canvas-confetti","response":"success"},{"item":"canvas-gauges","response":"success"},{"item":"canvasjs","response":"success"},{"item":"canvaskit-wasm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"capitalize","response":"success"},{"item":"capture-console","response":"success"},{"item":"carbon-components-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"carbon__colors","response":"success"},{"item":"carbon__icon-helpers","response":"success"},{"item":"carbon__icons-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__layout","response":"success"},{"item":"carbon__motion","response":"success"},{"item":"carbon__pictograms-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__themes","response":"success"},{"item":"carbon__type","response":"success"},{"item":"carbone","response":"success"},{"item":"card-validator","response":"success"},{"item":"carlo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"case-sensitive-paths-webpack-plugin","response":"success"},{"item":"caseless","response":"success"},{"item":"cash","response":"success"},{"item":"cashaddrjs","response":"success"},{"item":"casperjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"cassandra-store","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"cassanknex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"catbox-memory","response":"success"},{"item":"catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"cavy","response":"success"},{"item":"cbor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ccap","response":"success"},{"item":"ccapture.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"center-align","response":"success"},{"item":"centra","response":"success"},{"item":"cesium","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cfenv","response":"success"},{"item":"cfn-response","response":"success"},{"item":"chai","response":"success"},{"item":"chai-almost","response":"success"},{"item":"chai-arrays","response":"success"},{"item":"chai-as-promised","response":"success"},{"item":"chai-datetime","response":"success"},{"item":"chai-dom","response":"success"},{"item":"chai-enzyme","response":"success"},{"item":"chai-fs","response":"success"},{"item":"chai-fuzzy","response":"success"},{"item":"chai-jest-snapshot","response":"success"},{"item":"chai-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"chai-json-schema","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"chai-like","response":"success"},{"item":"chai-moment","response":"success"},{"item":"chai-oequal","response":"success"},{"item":"chai-roughly","response":"success"},{"item":"chai-spies","response":"success"},{"item":"chai-string","response":"success"},{"item":"chai-style","response":"success"},{"item":"chai-subset","response":"success"},{"item":"chai-things","response":"success"},{"item":"chai-uuid","response":"success"},{"item":"chai-xml","response":"success"},{"item":"chalk-animation","response":"success"},{"item":"chalk-pipe","response":"success"},{"item":"chance","response":"success"},{"item":"change-case-object","response":"success"},{"item":"change-emitter","response":"success"},{"item":"changelog-parser","response":"success"},{"item":"chardet","response":"success"},{"item":"charm","response":"success"},{"item":"charset","response":"success"},{"item":"chart.js","response":"success"},{"item":"chartist","response":"success"},{"item":"chartmogul-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chayns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"check-error","response":"success"},{"item":"check-sum","response":"success"},{"item":"check-types","response":"success"},{"item":"checkstyle-formatter","response":"success"},{"item":"checksum","response":"success"},{"item":"cheerio","response":"success"},{"item":"chess.js","response":"success"},{"item":"chessboardjs","response":"success"},{"item":"child-process-promise","response":"success"},{"item":"chmodr","response":"success"},{"item":"chocolatechipjs","response":"success"},{"item":"chordsheetjs","response":"success"},{"item":"chosen-js","response":"success"},{"item":"chownr","response":"success"},{"item":"chroma-js","response":"success"},{"item":"chrome","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"chrome-apps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromecast-caf-receiver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"chromecast-caf-sender","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromedriver","response":"success"},{"item":"chui","response":"success"},{"item":"chunk","response":"success"},{"item":"chunk-text","response":"success"},{"item":"ci-info","response":"success"},{"item":"cipher-base","response":"success"},{"item":"circuit-breaker-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"circular-dependency-plugin","response":"success"},{"item":"circular-json","response":"success"},{"item":"ckeditor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clamp","response":"success"},{"item":"clamp-js","response":"success"},{"item":"clamp-js-main","response":"success"},{"item":"clarinet","response":"success"},{"item":"classnames","response":"success"},{"item":"cldrjs","response":"success"},{"item":"clean-css","response":"success"},{"item":"clean-git-ref","response":"success"},{"item":"clean-regexp","response":"success"},{"item":"clear","response":"success"},{"item":"clearbladejs-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"clearbladejs-node","response":"success"},{"item":"clearbladejs-server","response":"success"},{"item":"cleave.js","response":"success"},{"item":"cli","response":"success"},{"item":"cli-box","response":"success"},{"item":"cli-color","response":"success"},{"item":"cli-interact","response":"success"},{"item":"cli-progress","response":"success"},{"item":"cli-spinner","response":"success"},{"item":"cli-spinners","response":"success"},{"item":"cli-table","response":"success"},{"item":"cli-table2","response":"success"},{"item":"client-sessions","response":"success"},{"item":"clientjs","response":"success"},{"item":"cliff","response":"success"},{"item":"clipboard","response":"success"},{"item":"clipboard-js","response":"success"},{"item":"clmtrackr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clndr","response":"success"},{"item":"clockpicker","response":"success"},{"item":"clone","response":"success"},{"item":"clone-deep","response":"success"},{"item":"cloneable-readable","response":"success"},{"item":"cloner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"closure-compiler","response":"success"},{"item":"cloud-config-client","response":"success"},{"item":"cloud-env","response":"success"},{"item":"cloudflare-apps","response":"success"},{"item":"clovelced-plugin-audiomanagement","response":"success"},{"item":"clownface","response":"success"},{"item":"cls-hooked","response":"success"},{"item":"clui","response":"success"},{"item":"clusterize.js","response":"success"},{"item":"cmd-shim","response":"success"},{"item":"cnpj","response":"success"},{"item":"co","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"co-body","response":"success"},{"item":"co-views","response":"success"},{"item":"code","response":"success"},{"item":"codeflask","response":"success"},{"item":"codegen.macro","response":"success"},{"item":"codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"codependency","response":"success"},{"item":"coffeeify","response":"success"},{"item":"coinbase","response":"success"},{"item":"coinbase-commerce-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"coinlist","response":"success"},{"item":"coinstring","response":"success"},{"item":"collections","response":"success"},{"item":"collectionsjs","response":"success"},{"item":"color","response":"success"},{"item":"color-check","response":"success"},{"item":"color-convert","response":"success"},{"item":"color-diff","response":"success"},{"item":"color-hash","response":"success"},{"item":"color-name","response":"success"},{"item":"color-namer","response":"success"},{"item":"color-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"color-support","response":"success"},{"item":"colorbrewer","response":"success"},{"item":"colornames","response":"success"},{"item":"colresizable","response":"success"},{"item":"columnify","response":"success"},{"item":"com.darktalker.cordova.screenshot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"com.wikitude.phonegap.wikitudeplugin","response":"success"},{"item":"combinations","response":"success"},{"item":"combine-reducers","response":"success"},{"item":"combine-source-map","response":"success"},{"item":"combined-stream","response":"success"},{"item":"combokeys","response":"success"},{"item":"cometd","response":"success"},{"item":"command-exists","response":"success"},{"item":"command-line-args","response":"success"},{"item":"command-line-commands","response":"success"},{"item":"command-line-usage","response":"success"},{"item":"commander-remaining-args","response":"success"},{"item":"commangular","response":"success"},{"item":"comment-json","response":"success"},{"item":"commercetools__enzyme-extensions","response":"success"},{"item":"commitlint__load","response":"success"},{"item":"common-errors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"common-prefix","response":"success"},{"item":"common-tags","response":"success"},{"item":"commondir","response":"success"},{"item":"commonmark","response":"success"},{"item":"compare-func","response":"success"},{"item":"compare-function","response":"success"},{"item":"compare-version","response":"success"},{"item":"compass-vertical-rhythm","response":"success"},{"item":"complex","response":"success"},{"item":"complex.js","response":"success"},{"item":"component-emitter","response":"success"},{"item":"compose-function","response":"success"},{"item":"compress.js","response":"success"},{"item":"compressible","response":"success"},{"item":"compression","response":"success"},{"item":"compression-webpack-plugin","response":"success"},{"item":"compute-argmax","response":"success"},{"item":"compute-quantile","response":"success"},{"item":"compute-stdev","response":"success"},{"item":"concat-map","response":"success"},{"item":"concat-stream","response":"success"},{"item":"concaveman","response":"success"},{"item":"concurrently","response":"success"},{"item":"conditional","response":"success"},{"item":"conductor-animate","response":"success"},{"item":"confidence","response":"success"},{"item":"config","response":"success"},{"item":"config-yaml","response":"success"},{"item":"configs-overload","response":"success"},{"item":"configstore","response":"success"},{"item":"configurable","response":"success"},{"item":"confit","response":"success"},{"item":"connect","response":"success"},{"item":"connect-azuretables","response":"success"},{"item":"connect-busboy","response":"success"},{"item":"connect-datadog","response":"success"},{"item":"connect-ensure-login","response":"success"},{"item":"connect-flash","response":"success"},{"item":"connect-history-api-fallback","response":"success"},{"item":"connect-history-api-fallback-exclusions","response":"success"},{"item":"connect-livereload","response":"success"},{"item":"connect-modrewrite","response":"success"},{"item":"connect-mongodb-session","response":"success"},{"item":"connect-pg-simple","response":"success"},{"item":"connect-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"connect-sequence","response":"success"},{"item":"connect-slashes","response":"success"},{"item":"connect-timeout","response":"success"},{"item":"connect-trim-body","response":"success"},{"item":"console-log-level","response":"success"},{"item":"console-stamp","response":"success"},{"item":"console-ui","response":"success"},{"item":"consolidate","response":"success"},{"item":"consul","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"consumable-stream","response":"success"},{"item":"contains-path","response":"success"},{"item":"content-disposition","response":"success"},{"item":"content-range","response":"success"},{"item":"content-type","response":"success"},{"item":"contentful-resolve-response","response":"success"},{"item":"contentstack","response":"success"},{"item":"contextjs","response":"success"},{"item":"continuation-local-storage","response":"success"},{"item":"contract-proxy-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"conventional-changelog","response":"success"},{"item":"conventional-changelog-config-spec","response":"success"},{"item":"conventional-changelog-core","response":"success"},{"item":"conventional-changelog-preset-loader","response":"success"},{"item":"conventional-changelog-writer","response":"success"},{"item":"conventional-commits-parser","response":"success"},{"item":"conventional-recommended-bump","response":"success"},{"item":"convert-layout","response":"success"},{"item":"convert-source-map","response":"success"},{"item":"convert-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"convert-units","response":"success"},{"item":"convict","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"cookie","response":"success"},{"item":"cookie-parser","response":"success"},{"item":"cookie-session","response":"success"},{"item":"cookie-signature","response":"success"},{"item":"cookie_js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"cookiejar","response":"success"},{"item":"cookies","response":"success"},{"item":"copy","response":"success"},{"item":"copy-paste","response":"success"},{"item":"copy-webpack-plugin","response":"success"},{"item":"copyfiles","response":"success"},{"item":"cordova","response":"success"},{"item":"cordova-ionic","response":"success"},{"item":"cordova-plugin-app-version","response":"success"},{"item":"cordova-plugin-background-mode","response":"success"},{"item":"cordova-plugin-badge","response":"success"},{"item":"cordova-plugin-ble-central","response":"success"},{"item":"cordova-plugin-bluetoothclassic-serial","response":"success"},{"item":"cordova-plugin-canvascamera","response":"success"},{"item":"cordova-plugin-device-name","response":"success"},{"item":"cordova-plugin-email-composer","response":"success"},{"item":"cordova-plugin-file-opener2","response":"success"},{"item":"cordova-plugin-ibeacon","response":"success"},{"item":"cordova-plugin-insomnia","response":"success"},{"item":"cordova-plugin-keyboard","response":"success"},{"item":"cordova-plugin-mapsforge","response":"success"},{"item":"cordova-plugin-ms-adal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cordova-plugin-native-keyboard","response":"success"},{"item":"cordova-plugin-ouralabs","response":"success"},{"item":"cordova-plugin-qrscanner","response":"success"},{"item":"cordova-plugin-spinner","response":"success"},{"item":"cordova-plugin-websql","response":"success"},{"item":"cordova-sqlite-storage","response":"success"},{"item":"cordova-universal-links-plugin","response":"success"},{"item":"cordova_app_version_plugin","response":"success"},{"item":"cordovarduino","response":"success"},{"item":"core-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"core-object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"correlation-id","response":"success"},{"item":"cors","response":"success"},{"item":"cote","response":"success"},{"item":"couchbase","response":"success"},{"item":"countdown","response":"success"},{"item":"counterpart","response":"success"},{"item":"countries-and-timezones","response":"success"},{"item":"country-data","response":"success"},{"item":"country-list","response":"success"},{"item":"country-select-js","response":"success"},{"item":"coverup","response":"success"},{"item":"cpx","response":"success"},{"item":"cqrs-domain","response":"success"},{"item":"cradle","response":"success"},{"item":"crc","response":"success"},{"item":"create-error","response":"success"},{"item":"create-hash","response":"success"},{"item":"create-hmac","response":"success"},{"item":"create-react-class","response":"success"},{"item":"create-subscription","response":"success"},{"item":"create-xpub","response":"success"},{"item":"createjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/createjs"},{"item":"createjs-lib","response":"success"},{"item":"credential","response":"success"},{"item":"credit-card-type","response":"success"},{"item":"critters-webpack-plugin","response":"success"},{"item":"cron","response":"success"},{"item":"cron-converter","response":"success"},{"item":"croppie","response":"success"},{"item":"cross-spawn","response":"success"},{"item":"cross-storage","response":"success"},{"item":"crossfilter","response":"success"},{"item":"crossroads","response":"success"},{"item":"crpc","response":"success"},{"item":"crumb","response":"success"},{"item":"cryptex","response":"success"},{"item":"cryptiles","response":"success"},{"item":"crypto-js","response":"success"},{"item":"cryptojs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cryptr","response":"success"},{"item":"cson","response":"success"},{"item":"csp-html-webpack-plugin","response":"success"},{"item":"csprng","response":"success"},{"item":"csrf","response":"success"},{"item":"css","response":"success"},{"item":"css-font-loading-module","response":"success"},{"item":"css-mediaquery","response":"success"},{"item":"css-modules","response":"success"},{"item":"css-modules-loader-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"css-modules-require-hook","response":"success"},{"item":"css-selector-tokenizer","response":"success"},{"item":"css-to-style","response":"success"},{"item":"css-tree","response":"success"},{"item":"cssbeautify","response":"success"},{"item":"cssesc","response":"success"},{"item":"cssnano","response":"success"},{"item":"csso","response":"success"},{"item":"csurf","response":"success"},{"item":"csv2json","response":"success"},{"item":"csvrow","response":"success"},{"item":"csvtojson","response":"success"},{"item":"cucumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cuid","response":"success"},{"item":"cuint","response":"success"},{"item":"currency-formatter","response":"success"},{"item":"current-git-branch","response":"success"},{"item":"cuss","response":"success"},{"item":"custom-error-generator","response":"success"},{"item":"custom-functions-runtime","response":"success"},{"item":"cwd","response":"success"},{"item":"cwise","response":"success"},{"item":"cwise-compiler","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"cwise-parser","response":"success"},{"item":"cyberblast__config","response":"success"},{"item":"cyberblast__logger","response":"success"},{"item":"cyberblast__webserver","response":"success"},{"item":"cybozulabs-md5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cypress-axe","response":"success"},{"item":"cypress-cucumber-preprocessor","response":"success"},{"item":"cypress-image-snapshot","response":"success"},{"item":"cytoscape","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d","response":"success"},{"item":"d20","response":"success"},{"item":"d3","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d3-array","response":"success"},{"item":"d3-axis","response":"success"},{"item":"d3-box","response":"success"},{"item":"d3-brush","response":"success"},{"item":"d3-chord","response":"success"},{"item":"d3-cloud","response":"success"},{"item":"d3-collection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"d3-color","response":"success"},{"item":"d3-contour","response":"success"},{"item":"d3-delaunay","response":"success"},{"item":"d3-dispatch","response":"success"},{"item":"d3-drag","response":"success"},{"item":"d3-dsv","response":"success"},{"item":"d3-ease","response":"success"},{"item":"d3-fetch","response":"success"},{"item":"d3-force","response":"success"},{"item":"d3-format","response":"success"},{"item":"d3-geo","response":"success"},{"item":"d3-graphviz","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-hexbin","response":"success"},{"item":"d3-hierarchy","response":"success"},{"item":"d3-hsv","response":"success"},{"item":"d3-interpolate","response":"success"},{"item":"d3-interpolate-path","response":"success"},{"item":"d3-path","response":"success"},{"item":"d3-polygon","response":"success"},{"item":"d3-quadtree","response":"success"},{"item":"d3-queue","response":"success"},{"item":"d3-random","response":"success"},{"item":"d3-request","response":"success"},{"item":"d3-require","response":"success"},{"item":"d3-sankey","response":"success"},{"item":"d3-scale","response":"success"},{"item":"d3-scale-chromatic","response":"success"},{"item":"d3-selection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"d3-selection-multi","response":"success"},{"item":"d3-shape","response":"success"},{"item":"d3-time","response":"success"},{"item":"d3-time-format","response":"success"},{"item":"d3-timer","response":"success"},{"item":"d3-tip","response":"success"},{"item":"d3-transition","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-voronoi","response":"success"},{"item":"d3-zoom","response":"success"},{"item":"d3.slider","response":"success"},{"item":"d3kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3pie","response":"success"},{"item":"dagre","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-d3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-layout","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dashify","response":"success"},{"item":"dat.gui","response":"success"},{"item":"data-driven","response":"success"},{"item":"datadog-metrics","response":"success"},{"item":"datadog-statsd-metrics-collector","response":"success"},{"item":"datadog-tracer","response":"success"},{"item":"datadog-winston","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"datastore-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"datastore-level","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"datatables.net","response":"success"},{"item":"datatables.net-autofill","response":"success"},{"item":"datatables.net-buttons","response":"success"},{"item":"datatables.net-colreorder","response":"success"},{"item":"datatables.net-fixedcolumns","response":"success"},{"item":"datatables.net-fixedheader","response":"success"},{"item":"datatables.net-keytable","response":"success"},{"item":"datatables.net-rowgroup","response":"success"},{"item":"datatables.net-rowreorder","response":"success"},{"item":"datatables.net-scroller","response":"success"},{"item":"datatables.net-select","response":"success"},{"item":"date-and-time","response":"success"},{"item":"date-arithmetic","response":"success"},{"item":"date-fp","response":"success"},{"item":"date-now","response":"success"},{"item":"date-range-array","response":"success"},{"item":"date-utils","response":"success"},{"item":"date.format.js","response":"success"},{"item":"dateformat","response":"success"},{"item":"datejs","response":"success"},{"item":"daterangepicker","response":"success"},{"item":"dav","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dayzed","response":"success"},{"item":"db-migrate-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db-migrate-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db.js","response":"success"},{"item":"dbus","response":"success"},{"item":"dc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"deasync","response":"success"},{"item":"death","response":"success"},{"item":"debessmann","response":"success"},{"item":"debounce","response":"success"},{"item":"debounce-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"debug","response":"success"},{"item":"decay","response":"success"},{"item":"decode-entities","response":"success"},{"item":"decode-uri-component","response":"success"},{"item":"decomment","response":"success"},{"item":"decompress","response":"success"},{"item":"decorum","response":"success"},{"item":"dedent","response":"success"},{"item":"deep-assign","response":"success"},{"item":"deep-diff","response":"success"},{"item":"deep-equal","response":"success"},{"item":"deep-equal-in-any-order","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"deep-extend","response":"success"},{"item":"deep-freeze","response":"success"},{"item":"deep-freeze-strict","response":"success"},{"item":"deezer-sdk","response":"success"},{"item":"default-gateway","response":"success"},{"item":"defaults","response":"success"},{"item":"defaults-deep","response":"success"},{"item":"defer-promise","response":"success"},{"item":"define-properties","response":"success"},{"item":"defined","response":"success"},{"item":"deglob","response":"success"},{"item":"deindent","response":"success"},{"item":"deku","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"delaunator","response":"success"},{"item":"delete-empty","response":"success"},{"item":"deline","response":"success"},{"item":"deluge","response":"success"},{"item":"denodeify","response":"success"},{"item":"deoxxa-content-type","response":"success"},{"item":"depd","response":"success"},{"item":"dependency-tree","response":"success"},{"item":"deployjava","response":"success"},{"item":"deprecate","response":"success"},{"item":"deps-sort","response":"success"},{"item":"derhuerst__cli-on-key","response":"success"},{"item":"destroy","response":"success"},{"item":"destroy-on-hwm","response":"success"},{"item":"detect-character-encoding","response":"success"},{"item":"detect-emoji-support","response":"success"},{"item":"detect-hover","response":"success"},{"item":"detect-it","response":"success"},{"item":"detect-node","response":"success"},{"item":"detect-passive-events","response":"success"},{"item":"detect-pointer","response":"success"},{"item":"detect-port","response":"success"},{"item":"detect-touch-events","response":"success"},{"item":"detective","response":"success"},{"item":"detox","response":"success"},{"item":"dev-ip","response":"success"},{"item":"devexpress-aspnetcore-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"devexpress-web","response":"success"},{"item":"dexie-batch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"df-visible","response":"success"},{"item":"dhtmlxgantt","response":"success"},{"item":"dhtmlxscheduler","response":"success"},{"item":"di","response":"success"},{"item":"di-lite","response":"success"},{"item":"diacritics","response":"success"},{"item":"dialog-polyfill","response":"success"},{"item":"dialogflow-fulfillment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n"},{"item":"dicer","response":"success"},{"item":"didyoumean","response":"success"},{"item":"diff","response":"success"},{"item":"diff-match-patch","response":"success"},{"item":"diff2html","response":"success"},{"item":"diffie-hellman","response":"success"},{"item":"difflib","response":"success"},{"item":"digibyte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dinero.js","response":"success"},{"item":"dingtalk-robot-sender","response":"success"},{"item":"dir-glob","response":"success"},{"item":"dir-resolve","response":"success"},{"item":"dir-walker-gen","response":"success"},{"item":"direction","response":"success"},{"item":"dirname-regex","response":"success"},{"item":"dirty-chai","response":"success"},{"item":"discontinuous-range","response":"success"},{"item":"discord-rpc","response":"success"},{"item":"discourse-sso","response":"success"},{"item":"dispatchr","response":"success"},{"item":"disposable-email-domains","response":"success"},{"item":"distributions","response":"success"},{"item":"distributions-poisson-quantile","response":"success"},{"item":"diva.js","response":"success"},{"item":"djv","response":"success"},{"item":"dkim-signer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dlv","response":"success"},{"item":"dnssd","response":"success"},{"item":"doccookies","response":"success"},{"item":"dock-spawn","response":"success"},{"item":"docker-events","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"dockerode","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"docopt","response":"success"},{"item":"doctrine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"document-ready","response":"success"},{"item":"documentdb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"documentdb-server","response":"success"},{"item":"documentdb-session","response":"success"},{"item":"docx-templates","response":"success"},{"item":"dogapi","response":"success"},{"item":"doge-seed","response":"success"},{"item":"dojo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dom-clipboard-api","response":"success"},{"item":"dom-inputevent","response":"success"},{"item":"dom-matches","response":"success"},{"item":"dom-mediacapture-record","response":"success"},{"item":"dom-parser","response":"success"},{"item":"dom-to-image","response":"success"},{"item":"dom4","response":"success"},{"item":"domexception","response":"success"},{"item":"domhandler","response":"success"},{"item":"domo","response":"success"},{"item":"dompurify","response":"success"},{"item":"domready","response":"success"},{"item":"domtagger","response":"success"},{"item":"domurl","response":"success"},{"item":"domutils","response":"success"},{"item":"donna","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dookie","response":"success"},{"item":"dos2unix","response":"success"},{"item":"dot","response":"success"},{"item":"dot-object","response":"success"},{"item":"dot-prop-immutable","response":"success"},{"item":"dotdir-regex","response":"success"},{"item":"dotdotdot","response":"success"},{"item":"dotenv-flow","response":"success"},{"item":"dotenv-parse-variables","response":"success"},{"item":"dotenv-safe","response":"success"},{"item":"dotenv-webpack","response":"success"},{"item":"dotfile-regex","response":"success"},{"item":"dottie","response":"success"},{"item":"double-ended-queue","response":"success"},{"item":"doublearray","response":"success"},{"item":"doubleclick-gpt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"download","response":"success"},{"item":"downloadjs","response":"success"},{"item":"downscale","response":"success"},{"item":"dplayer","response":"success"},{"item":"draft-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draft-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draftjs-to-html","response":"success"},{"item":"drag-timetable","response":"success"},{"item":"draggabilly","response":"success"},{"item":"dragscroll","response":"success"},{"item":"dragselect","response":"success"},{"item":"dragster","response":"success"},{"item":"dragula","response":"success"},{"item":"driftless","response":"success"},{"item":"drivelist","response":"success"},{"item":"dropbox-chooser","response":"success"},{"item":"dropboxjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dropkickjs","response":"success"},{"item":"dropzone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ds18b20","response":"success"},{"item":"dsv","response":"success"},{"item":"dts-bundle","response":"success"},{"item":"dts-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"du","response":"success"},{"item":"duckduckgo-images-api","response":"success"},{"item":"duo_web_sdk","response":"success"},{"item":"duosecurity__duo_web","response":"success"},{"item":"duplexer2","response":"success"},{"item":"duplexer3","response":"success"},{"item":"duplexify","response":"success"},{"item":"duplicate-package-checker-webpack-plugin","response":"success"},{"item":"durandal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dush","response":"success"},{"item":"dustjs-linkedin","response":"success"},{"item":"dv","response":"success"},{"item":"dvtng-jss","response":"success"},{"item":"dw-bxslider-4","response":"success"},{"item":"dwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"dygraphs","response":"success"},{"item":"dymo-label-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dynamic-time-warping","response":"success"},{"item":"dynamodb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"dynatable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dynatrace","response":"success"},{"item":"dynogels","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"each","response":"success"},{"item":"earcut","response":"success"},{"item":"easeljs","response":"success"},{"item":"eases","response":"success"},{"item":"easy-api-request","response":"success"},{"item":"easy-jsend","response":"success"},{"item":"easy-rbac","response":"success"},{"item":"easy-session","response":"success"},{"item":"easy-table","response":"success"},{"item":"easy-xapi","response":"success"},{"item":"easy-xapi-utils","response":"success"},{"item":"easydate","response":"success"},{"item":"ebml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ebongarde-root","response":"success"},{"item":"eccrypto","response":"success"},{"item":"echarts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ecma-proposal-math-extensions","response":"success"},{"item":"ecore","response":"success"},{"item":"ecurve","response":"success"},{"item":"ed25519","response":"success"},{"item":"ed2curve","response":"success"},{"item":"edmonds-blossom","response":"success"},{"item":"edtr-io__mathquill","response":"success"},{"item":"ee-first","response":"success"},{"item":"egg-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"egg.js","response":"success"},{"item":"egjs__axes","response":"success"},{"item":"egjs__component","response":"success"},{"item":"ej.web.all","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"ejs","response":"success"},{"item":"ejs-locals","response":"success"},{"item":"ejson","response":"success"},{"item":"elastic.js","response":"success"},{"item":"elasticlunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"elasticsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"electron-clipboard-extended","response":"success"},{"item":"electron-devtools-installer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"electron-json-storage","response":"success"},{"item":"electron-load-devtool","response":"success"},{"item":"electron-localshortcut","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-notifications","response":"success"},{"item":"electron-notify","response":"success"},{"item":"electron-packager","response":"success"},{"item":"electron-prompt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-settings","response":"success"},{"item":"electron-spellchecker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-window-state","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"element-closest","response":"success"},{"item":"element-resize-detector","response":"success"},{"item":"element-resize-event","response":"success"},{"item":"elementtree","response":"success"},{"item":"elgamal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"elliptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"elm","response":"success"},{"item":"elo-rank","response":"success"},{"item":"elv","response":"success"},{"item":"email-templates","response":"success"},{"item":"ember","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data__adapter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__model","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__serializer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-data__store","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-feature-flags","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-modal-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-resolver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-testing-helpers","response":"success"},{"item":"ember__application","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember__controller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__debug","response":"success"},{"item":"ember__engine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__error","response":"success"},{"item":"ember__object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__ordered-set","response":"success"},{"item":"ember__polyfills","response":"success"},{"item":"ember__routing","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__runloop","response":"success"},{"item":"ember__service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__string","response":"success"},{"item":"ember__template","response":"success"},{"item":"ember__test","response":"success"},{"item":"ember__test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"emissary","response":"success"},{"item":"emoji-flags","response":"success"},{"item":"emoji-js","response":"success"},{"item":"emoji-mart","response":"success"},{"item":"emoji-regex","response":"success"},{"item":"emoji-strip","response":"success"},{"item":"emojione","response":"success"},{"item":"empower","response":"success"},{"item":"empty-dir","response":"success"},{"item":"emscripten","response":"success"},{"item":"encodeurl","response":"success"},{"item":"encoding-down","response":"success"},{"item":"encoding-japanese","response":"success"},{"item":"end-of-stream","response":"success"},{"item":"engine-check","response":"success"},{"item":"engine.io","response":"success"},{"item":"engine.io-client","response":"success"},{"item":"enhanced-resolve","response":"success"},{"item":"enigma.js","response":"success"},{"item":"enquire.js","response":"success"},{"item":"ensure-posix-path","response":"success"},{"item":"ent","response":"success"},{"item":"entities","response":"success"},{"item":"entria__relay-experimental","response":"success"},{"item":"env-ci","response":"success"},{"item":"env-to-object","response":"success"},{"item":"envify","response":"success"},{"item":"enzyme","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-adapter-react-15","response":"success"},{"item":"enzyme-adapter-react-15.4","response":"success"},{"item":"enzyme-adapter-react-16","response":"success"},{"item":"enzyme-async-helpers","response":"success"},{"item":"enzyme-react-intl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-to-json","response":"success"},{"item":"eonasdan-bootstrap-datetimepicker","response":"success"},{"item":"epiceditor","response":"success"},{"item":"epilogue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"epub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"eq.js","response":"success"},{"item":"error-subclass","response":"success"},{"item":"errorhandler","response":"success"},{"item":"es-feature-detection","response":"success"},{"item":"es-module-lexer","response":"success"},{"item":"es-to-primitive","response":"success"},{"item":"es6-collections","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/es6-collections/index.d.ts(22,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(47,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(53,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(67,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(73,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakMap', but here has type 'WeakMap'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(102,24): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(103,48): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakSet', but here has type 'WeakSet'.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(28,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(34,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(54,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(64,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(69,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(87,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\n"},{"item":"es6-promisify","response":"success"},{"item":"es6-set-proptypes","response":"success"},{"item":"es6-shim","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'statements' of undefined\n"},{"item":"es6-weak-map","response":"success"},{"item":"esc-pos-encoder","response":"success"},{"item":"escape-html","response":"success"},{"item":"escape-latex","response":"success"},{"item":"escape-regexp","response":"success"},{"item":"escodegen","response":"success"},{"item":"escpos","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint-plugin-prettier","response":"success"},{"item":"eslint-scope","response":"success"},{"item":"eslint-visitor-keys","response":"success"},{"item":"esm","response":"success"},{"item":"esprima","response":"success"},{"item":"esprima-walk","response":"success"},{"item":"espruino","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'global' must be of type 'any', but here has type 'Global'.\n"},{"item":"esquery","response":"success"},{"item":"esrever","response":"success"},{"item":"esri-leaflet","response":"success"},{"item":"esri-leaflet-geocoder","response":"success"},{"item":"estimate","response":"success"},{"item":"estraverse","response":"success"},{"item":"estree","response":"success"},{"item":"estree-jsx","response":"success"},{"item":"etag","response":"success"},{"item":"eth-lightwallet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eth-sig-util","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ethereum-protocol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"ethereumjs-abi","response":"success"},{"item":"ethjs-signer","response":"success"},{"item":"eureka-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"evaporate","response":"success"},{"item":"event-emitter","response":"success"},{"item":"event-emitter-es6","response":"success"},{"item":"event-hooks-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"event-kit","response":"success"},{"item":"event-loop-lag","response":"success"},{"item":"event-stream","response":"success"},{"item":"event-to-promise","response":"success"},{"item":"events","response":"success"},{"item":"events.once","response":"success"},{"item":"eventsource","response":"success"},{"item":"evernote","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"excel-style-dataformatter","response":"success"},{"item":"exenv","response":"success"},{"item":"exif","response":"success"},{"item":"exit","response":"success"},{"item":"exorcist","response":"success"},{"item":"expand-tilde","response":"success"},{"item":"expect-puppeteer","response":"success"},{"item":"expect.js","response":"success"},{"item":"expectations","response":"success"},{"item":"expired","response":"success"},{"item":"expired-storage","response":"success"},{"item":"expirymanager","response":"success"},{"item":"expo-mixpanel-analytics","response":"success"},{"item":"expo__status-bar-height","response":"success"},{"item":"expo__vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"express","response":"success"},{"item":"express-actuator","response":"success"},{"item":"express-async-wrap","response":"success"},{"item":"express-boom","response":"success"},{"item":"express-brute","response":"success"},{"item":"express-brute-memcached","response":"success"},{"item":"express-brute-mongo","response":"success"},{"item":"express-brute-redis","response":"success"},{"item":"express-bunyan-logger","response":"success"},{"item":"express-busboy","response":"success"},{"item":"express-cluster","response":"success"},{"item":"express-correlation-id","response":"success"},{"item":"express-debug","response":"success"},{"item":"express-domain-middleware","response":"success"},{"item":"express-ejs-layouts","response":"success"},{"item":"express-enforces-ssl","response":"success"},{"item":"express-fileupload","response":"success"},{"item":"express-flash","response":"success"},{"item":"express-flash-2","response":"success"},{"item":"express-flash-notification","response":"success"},{"item":"express-form-data","response":"success"},{"item":"express-formidable","response":"success"},{"item":"express-handlebars","response":"success"},{"item":"express-http-proxy","response":"success"},{"item":"express-jsonschema","response":"success"},{"item":"express-jwt","response":"success"},{"item":"express-less","response":"success"},{"item":"express-list-endpoints","response":"success"},{"item":"express-minify","response":"success"},{"item":"express-mongo-sanitize","response":"success"},{"item":"express-mung","response":"success"},{"item":"express-myconnection","response":"success"},{"item":"express-mysql-session","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-pino-logger","response":"success"},{"item":"express-rate-limit","response":"success"},{"item":"express-redis-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"express-request-id","response":"success"},{"item":"express-route-fs","response":"success"},{"item":"express-routemap","response":"success"},{"item":"express-routes-versioning","response":"success"},{"item":"express-sanitized","response":"success"},{"item":"express-serve-static-core","response":"success"},{"item":"express-session","response":"success"},{"item":"express-sitemap-xml","response":"success"},{"item":"express-slow-down","response":"success"},{"item":"express-socket.io-session","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/express-socket.io-session/index.d.ts(12,27): error TS2694: Namespace 'global.Express' has no exported member 'Session'.\n"},{"item":"express-sslify","response":"success"},{"item":"express-status-monitor","response":"success"},{"item":"express-to-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-unless","response":"success"},{"item":"express-urlrewrite","response":"success"},{"item":"express-useragent","response":"success"},{"item":"express-version-request","response":"success"},{"item":"express-version-route","response":"success"},{"item":"express-wechat-access","response":"success"},{"item":"express-ws","response":"success"},{"item":"express-ws-routes","response":"success"},{"item":"express-xml-bodyparser","response":"success"},{"item":"extend","response":"success"},{"item":"extjs","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"extra-watch-webpack-plugin","response":"success"},{"item":"extract-files","response":"success"},{"item":"extract-text-webpack-plugin","response":"success"},{"item":"extract-zip","response":"success"},{"item":"extsprintf","response":"success"},{"item":"eyes","response":"success"},{"item":"ez-plus","response":"success"},{"item":"f1","response":"success"},{"item":"fabric","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"facebook-instant-games","response":"success"},{"item":"facebook-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"facebook-locales","response":"success"},{"item":"facebook-pixel","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"facepaint","response":"success"},{"item":"factory-girl","response":"success"},{"item":"faker","response":"success"},{"item":"falafel","response":"success"},{"item":"falcor","response":"success"},{"item":"falcor-express","response":"success"},{"item":"falcor-http-datasource","response":"success"},{"item":"falcor-json-graph","response":"success"},{"item":"falcor-router","response":"success"},{"item":"famous","response":"success"},{"item":"fancy-log","response":"success"},{"item":"fancybox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"farbtastic","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"fast-chunk-string","response":"success"},{"item":"fast-html-parser","response":"success"},{"item":"fast-json-stable-stringify","response":"success"},{"item":"fast-levenshtein","response":"success"},{"item":"fast-list","response":"success"},{"item":"fast-memory-cache","response":"success"},{"item":"fast-ratelimit","response":"success"},{"item":"fast-shuffle","response":"success"},{"item":"fast-stats","response":"success"},{"item":"fast-text-encoding","response":"success"},{"item":"fast64","response":"success"},{"item":"fastbitset","response":"success"},{"item":"fastclick","response":"success"},{"item":"fastify-accepts","response":"success"},{"item":"fastify-favicon","response":"success"},{"item":"fastify-rate-limit","response":"success"},{"item":"favico.js","response":"success"},{"item":"favicons","response":"success"},{"item":"favicons-webpack-plugin","response":"success"},{"item":"fb-watchman","response":"success"},{"item":"fbemitter","response":"success"},{"item":"feather-icons","response":"success"},{"item":"feather-route-matcher","response":"success"},{"item":"featherlight","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__authentication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-client","response":"success"},{"item":"feathersjs__authentication-jwt","response":"success"},{"item":"feathersjs__authentication-local","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-oauth1","response":"success"},{"item":"feathersjs__authentication-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__configuration","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__errors","response":"success"},{"item":"feathersjs__express","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__feathers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n"},{"item":"feathersjs__primus","response":"success"},{"item":"feathersjs__primus-client","response":"success"},{"item":"feathersjs__rest-client","response":"success"},{"item":"feathersjs__socket-commons","response":"success"},{"item":"feathersjs__socketio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"feathersjs__socketio-client","response":"success"},{"item":"feedme","response":"success"},{"item":"feedparser","response":"success"},{"item":"fetch-jsonp","response":"success"},{"item":"fetch-mock","response":"success"},{"item":"fetch.io","response":"success"},{"item":"ffi","response":"success"},{"item":"ffi-napi","response":"success"},{"item":"ffmpeg","response":"success"},{"item":"ffmpeg-static","response":"success"},{"item":"ffmpeg.js","response":"success"},{"item":"ffprobe-static","response":"success"},{"item":"fhir","response":"success"},{"item":"fhir-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fhir-kit-client","response":"success"},{"item":"fibers","response":"success"},{"item":"fibjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/fibjs\n../DefinitelyTyped/types/fibjs/declare/assert.d.ts(789,11): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/fibjs/declare/console.d.ts(912,11): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/fibjs/declare/constants.d.ts(212,11): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(383,16): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(601,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(217,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(289,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dns.d.ts(234,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(238,16): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(672,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(214,16): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(314,16): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(508,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(76,8): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(78,8): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(81,8): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(83,8): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(85,8): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(87,8): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(88,8): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(247,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(391,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(222,16): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(476,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/path.d.ts(370,11): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/fibjs/declare/process.d.ts(556,11): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/fibjs/declare/punycode.d.ts(256,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/querystring.d.ts(262,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(215,16): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/timers.d.ts(330,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/tty.d.ts(223,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/url.d.ts(236,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/util.d.ts(983,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/vm.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/zlib.d.ts(520,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/node/assert.d.ts(52,14): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/node/console.d.ts(2,14): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/node/constants.d.ts(7,14): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/node/crypto.d.ts(204,11): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/node/dgram.d.ts(37,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/fs.d.ts(1670,15): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/node/globals.d.ts(143,13): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/node/globals.d.ts(147,13): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/node/globals.d.ts(148,13): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(181,15): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/node/http.d.ts(136,15): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(137,11): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(381,11): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/node/net.d.ts(56,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/os.d.ts(214,11): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/node/path.d.ts(152,14): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/node/process.d.ts(14,14): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/node/string_decoder.d.ts(2,11): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/node/ts3.2/globals.d.ts(10,11): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n"},{"item":"field","response":"success"},{"item":"figlet","response":"success"},{"item":"figma","response":"success"},{"item":"file-entry-cache","response":"success"},{"item":"file-exists","response":"success"},{"item":"file-loader","response":"success"},{"item":"file-saver","response":"success"},{"item":"file-size","response":"success"},{"item":"filesize-parser","response":"success"},{"item":"filesystem","response":"success"},{"item":"filewriter","response":"success"},{"item":"filing-cabinet","response":"success"},{"item":"fill-pdf","response":"success"},{"item":"filter-invalid-dom-props","response":"success"},{"item":"final-form-focus","response":"success"},{"item":"final-form-set-field-data","response":"success"},{"item":"final-form-set-field-touched","response":"success"},{"item":"finalhandler","response":"success"},{"item":"finch","response":"success"},{"item":"find","response":"success"},{"item":"find-cache-dir","response":"success"},{"item":"find-config","response":"success"},{"item":"find-down","response":"success"},{"item":"find-exec","response":"success"},{"item":"find-package-json","response":"success"},{"item":"find-parent-dir","response":"success"},{"item":"find-project-root","response":"success"},{"item":"find-root","response":"success"},{"item":"find-unused-sass-variables","response":"success"},{"item":"findup-sync","response":"success"},{"item":"fined","response":"success"},{"item":"fingerprintjs","response":"success"},{"item":"fingerprintjs2","response":"success"},{"item":"firebase-client","response":"success"},{"item":"firebase-token-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"firebird","response":"success"},{"item":"firefox","response":"success"},{"item":"firefox-webext-browser","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"firmata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"first-mate","response":"success"},{"item":"fixed-data-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"fixed-data-table-2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"flagged-respawn","response":"success"},{"item":"flake-idgen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flat","response":"success"},{"item":"flat-cache","response":"success"},{"item":"flatbuffers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"flatbush","response":"success"},{"item":"fleximap","response":"success"},{"item":"flexmonster","response":"success"},{"item":"flexslider","response":"success"},{"item":"flickity","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flight","response":"success"},{"item":"flightplan","response":"success"},{"item":"flipsnap","response":"success"},{"item":"float-equal","response":"success"},{"item":"float-regex","response":"success"},{"item":"flot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"flowdoc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\nnode_modules/typescript/lib/lib.dom.d.ts(4585,40): error TS2344: Type 'HTMLAnchorElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4658,39): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4703,38): error TS2344: Type 'HTMLAnchorElement | HTMLAreaElement' does not satisfy the constraint 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4725,40): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4737,40): error TS2344: Type 'HTMLScriptElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4961,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4962,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(5331,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(5332,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(6221,11): error TS2430: Interface 'HTMLAnchorElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6475,11): error TS2430: Interface 'HTMLButtonElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6767,11): error TS2430: Interface 'HTMLEmbedElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6801,11): error TS2430: Interface 'HTMLFieldSetElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7304,11): error TS2430: Interface 'HTMLInputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7508,11): error TS2430: Interface 'HTMLLIElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7568,11): error TS2430: Interface 'HTMLLinkElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7981,11): error TS2430: Interface 'HTMLOListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8002,11): error TS2430: Interface 'HTMLObjectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8216,11): error TS2430: Interface 'HTMLOutputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8260,11): error TS2430: Interface 'HTMLParamElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8365,11): error TS2430: Interface 'HTMLScriptElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8414,11): error TS2430: Interface 'HTMLSelectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8529,11): error TS2430: Interface 'HTMLSourceElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8569,11): error TS2430: Interface 'HTMLStyleElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8950,11): error TS2430: Interface 'HTMLTextAreaElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(9120,11): error TS2430: Interface 'HTMLUListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11589,87): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Node'.\n Type 'HTMLAnchorElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11590,86): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Node'.\n Type 'SVGScriptElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(13142,11): error TS2430: Interface 'SVGComponentTransferFunctionElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13323,11): error TS2430: Interface 'SVGFEColorMatrixElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13741,11): error TS2430: Interface 'SVGFETurbulenceElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(14639,11): error TS2430: Interface 'SVGScriptElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(14686,11): error TS2430: Interface 'SVGStyleElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\n"},{"item":"flowjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"fluent","response":"success"},{"item":"fluent-ffmpeg","response":"success"},{"item":"fluent-langneg","response":"success"},{"item":"fluent-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__bundle","response":"success"},{"item":"fluent__dedent","response":"success"},{"item":"fluent__langneg","response":"success"},{"item":"fluent__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__sequence","response":"success"},{"item":"flush-write-stream","response":"success"},{"item":"flushable","response":"success"},{"item":"flux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fluxible","response":"success"},{"item":"fluxible-addons-react","response":"success"},{"item":"fluxible-router","response":"success"},{"item":"fluxxor","response":"success"},{"item":"fm-websync","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fnando__sparkline","response":"success"},{"item":"fnv-lite","response":"success"},{"item":"focus-within","response":"success"},{"item":"follow-redirects","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"fontfaceobserver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"fontkit","response":"success"},{"item":"fontoxml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"force-graph","response":"success"},{"item":"forever-agent","response":"success"},{"item":"forever-monitor","response":"success"},{"item":"forge-apis","response":"success"},{"item":"forge-viewer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"form-serialize","response":"success"},{"item":"form-serializer","response":"success"},{"item":"form-urlencoded","response":"success"},{"item":"format-duration","response":"success"},{"item":"format-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"format-link-header","response":"success"},{"item":"format-unicorn","response":"success"},{"item":"format-util","response":"success"},{"item":"formidable","response":"success"},{"item":"formol","response":"success"},{"item":"forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"forwarded","response":"success"},{"item":"fossil-delta","response":"success"},{"item":"foundation","response":"success"},{"item":"fpsmeter","response":"success"},{"item":"framebus","response":"success"},{"item":"franc","response":"success"},{"item":"frappe-gantt","response":"success"},{"item":"frctl__fractal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n"},{"item":"frecency","response":"success"},{"item":"freedom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"freeport","response":"success"},{"item":"fresh","response":"success"},{"item":"freshy","response":"success"},{"item":"frida-gum","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/frida-gum/index.d.ts(2179,15): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5621,11): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5626,13): error TS2300: Duplicate identifier 'File'.\n"},{"item":"friendly-errors-webpack-plugin","response":"success"},{"item":"frisby","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"from","response":"success"},{"item":"from2","response":"success"},{"item":"fromjs","response":"success"},{"item":"fs-capacitor","response":"success"},{"item":"fs-cson","response":"success"},{"item":"fs-ext","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise-es6","response":"success"},{"item":"fs-finder","response":"success"},{"item":"fs-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fs-plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-readdir-recursive","response":"success"},{"item":"fs-readfile-promise","response":"success"},{"item":"fscreen","response":"success"},{"item":"ftdomdelegate","response":"success"},{"item":"ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ftpd","response":"success"},{"item":"ftps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fullcalendar__vue","response":"success"},{"item":"fullname","response":"success"},{"item":"fullpage.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"function-bind","response":"success"},{"item":"fundamental-react","response":"success"},{"item":"fusioncharts","response":"success"},{"item":"fuzzaldrin","response":"success"},{"item":"fuzzaldrin-plus","response":"success"},{"item":"fuzzy-search","response":"success"},{"item":"fuzzyset","response":"success"},{"item":"fuzzyset.js","response":"success"},{"item":"fxjs","response":"success"},{"item":"fxn","response":"success"},{"item":"gae.channel.api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gamedig","response":"success"},{"item":"gamepad","response":"success"},{"item":"gamequery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"gandi-livedns","response":"success"},{"item":"gapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.auth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.acceleratedmobilepageurl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangeseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexperiencereport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.admin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsense","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsensehost","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analyticsreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androiddeviceprovisioning","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidenterprise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidpublisher","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appengine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appsactivity","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appstate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquerydatatransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.blogger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.books","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.civicinfo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.classroom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbilling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbuild","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouddebugger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouderrorreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudfunctions","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudiot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudkms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudmonitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudresourcemanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtrace","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouduseraccounts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.compute","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.consumersurveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.container","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.content","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.customsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataproc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.deploymentmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dfareporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.discovery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dlp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclickbidmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclicksearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebasedynamiclinks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaseremoteconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaserules","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firestore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fitness","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fusiontables","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.games","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesconfiguration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.genomics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gmail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupsmigration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupssettings","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.iam","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.identitytoolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.kgsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.language","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.licensing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.logging","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.manufacturers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.mirror","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.ml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.monitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oauth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oslogin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.partners","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.photoslibrary","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playcustomapp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playmoviespartner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plusdomains","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.prediction","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.proximitybeacon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pubsub","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.qpxexpress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.reseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.resourceviews","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.runtimeconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.safebrowsing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.script","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.searchconsole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicecontrol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicemanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.serviceuser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sheets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.siteverification","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.slides","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sourcerepo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spectrum","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.speech","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sqladmin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storagetransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.streetviewpublish","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.surveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tagmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.taskqueue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.toolresults","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vault","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.videointelligence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vision","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webfonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webmasters","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubereporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gaussian","response":"success"},{"item":"gaze","response":"success"},{"item":"gc-stats","response":"success"},{"item":"gdal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"geetest","response":"success"},{"item":"gematriya","response":"success"},{"item":"gen-readlines","response":"success"},{"item":"generate-changelog","response":"success"},{"item":"generate-json-webpack-plugin","response":"success"},{"item":"generic-functions","response":"success"},{"item":"generic-pool","response":"success"},{"item":"gently","response":"success"},{"item":"geobuf","response":"success"},{"item":"geodesy","response":"success"},{"item":"geoflatbush","response":"success"},{"item":"geoip-lite","response":"success"},{"item":"geojson","response":"success"},{"item":"geojson2osm","response":"success"},{"item":"geokdbush","response":"success"},{"item":"geolite2","response":"success"},{"item":"geometry-dom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/geometry-dom/index.d.ts(236,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPointReadOnly' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPointReadOnly; prototype: DOMPointReadOnly; fromPoint(other?: DOMPointInit): DOMPointReadOnly; }', but here has type '{ new (x: number, y: number, z: number, w: number): DOMPointReadOnly; prototype: DOMPointReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(241,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPoint' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; fromPoint(other?: DOMPointInit): DOMPoint; }', but here has type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(250,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(254,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(265,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRect' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRect; prototype: DOMRect; fromRect(other?: DOMRectInit): DOMRect; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRect; prototype: DOMRect; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(270,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRectReadOnly' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly; prototype: DOMRectReadOnly; fromRect(other?: DOMRectInit): DOMRectReadOnly; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRectReadOnly; prototype: DOMRectReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(279,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(283,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(287,5): error TS2687: All declarations of 'width' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(291,5): error TS2687: All declarations of 'height' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(299,5): error TS2687: All declarations of 'length' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(307,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMQuad' must be of type '{ new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; fromQuad(other?: DOMQuadInit): DOMQuad; fromRect(other?: DOMRectInit): DOMQuad; }', but here has type '{ new (rect?: DOMRectInit): DOMQuad; new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(313,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrixReadOnly' must be of type '{ new (init?: string | number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly; fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly; fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly; toString(): string; }', but here has type '{ new (numberSequence: number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(318,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrix' must be of type '{ new (init?: string | number[]): DOMMatrix; prototype: DOMMatrix; fromFloat32Array(array32: Float32Array): DOMMatrix; fromFloat64Array(array64: Float64Array): DOMMatrix; fromMatrix(other?: DOMMatrixInit): DOMMatrix; }', but here has type '{ new (): DOMMatrix; new (transformList: string): DOMMatrix; new (other: DOMMatrixReadOnly): DOMMatrix; new (array: number[]): DOMMatrix; new (a: number, b: number, c: number, d: number, e: number, f: number): DOMMatrix; prototype: DOMMatrix; }'.\nnode_modules/typescript/lib/lib.dom.d.ts(348,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(349,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(361,5): error TS2687: All declarations of 'height' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(362,5): error TS2687: All declarations of 'width' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(363,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(364,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(4179,14): error TS2687: All declarations of 'length' must have identical modifiers.\n"},{"item":"geopattern","response":"success"},{"item":"geopoint","response":"success"},{"item":"gestalt","response":"success"},{"item":"get-caller-file","response":"success"},{"item":"get-certain","response":"success"},{"item":"get-emoji","response":"success"},{"item":"get-folder-size","response":"success"},{"item":"get-func-name","response":"success"},{"item":"get-node-dimensions","response":"success"},{"item":"get-res","response":"success"},{"item":"get-value","response":"success"},{"item":"getenv","response":"success"},{"item":"getos","response":"success"},{"item":"getpass","response":"success"},{"item":"gettext-parser","response":"success"},{"item":"gettext.js","response":"success"},{"item":"gfc","response":"success"},{"item":"gh-pages","response":"success"},{"item":"ghauth","response":"success"},{"item":"ghost-storage-base","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"gifffer","response":"success"},{"item":"gijgo","response":"success"},{"item":"giphy-api","response":"success"},{"item":"giraffe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"git","response":"success"},{"item":"git-add-remote","response":"success"},{"item":"git-branch","response":"success"},{"item":"git-branch-is","response":"success"},{"item":"git-config","response":"success"},{"item":"git-config-path","response":"success"},{"item":"git-raw-commits","response":"success"},{"item":"git-repo-name","response":"success"},{"item":"git-rev","response":"success"},{"item":"git-rev-sync","response":"success"},{"item":"git-revision-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"git-root-dir","response":"success"},{"item":"git-semver-tags","response":"success"},{"item":"git-url-parse","response":"success"},{"item":"git-user-email","response":"success"},{"item":"git-user-name","response":"success"},{"item":"git-username","response":"success"},{"item":"gitconfiglocal","response":"success"},{"item":"github-url-from-git","response":"success"},{"item":"github-url-to-object","response":"success"},{"item":"github-username-regex","response":"success"},{"item":"gl","response":"success"},{"item":"gl-fbo","response":"success"},{"item":"gl-matrix","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"gl-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of Parameter - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gl-react-dom","response":"success"},{"item":"gl-react-expo","response":"success"},{"item":"gl-react-headless","response":"success"},{"item":"gl-react-native","response":"success"},{"item":"gl-shader","response":"success"},{"item":"gl-texture2d","response":"success"},{"item":"gl-vec2","response":"success"},{"item":"gl-vec3","response":"success"},{"item":"gl-vec4","response":"success"},{"item":"gldatepicker","response":"success"},{"item":"glidejs","response":"success"},{"item":"glob","response":"success"},{"item":"glob-base","response":"success"},{"item":"glob-expand","response":"success"},{"item":"glob-parent","response":"success"},{"item":"glob-stream","response":"success"},{"item":"glob-to-regexp","response":"success"},{"item":"glob-watcher","response":"success"},{"item":"global-agent","response":"success"},{"item":"global-modules","response":"success"},{"item":"global-modules-path","response":"success"},{"item":"global-npm","response":"success"},{"item":"global-paths","response":"success"},{"item":"global-prefix","response":"success"},{"item":"global-tunnel-ng","response":"success"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize-compiler","response":"success"},{"item":"globalthis","response":"success"},{"item":"globjoin","response":"success"},{"item":"globule","response":"success"},{"item":"glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"gm","response":"success"},{"item":"go","response":"success"},{"item":"good-storage","response":"success"},{"item":"google-adwords-scripts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"google-apps-script","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/google-apps-script\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-apps-script-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-closure-compiler","response":"success"},{"item":"google-cloud__datastore","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-cloud__kms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-cloud__tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"google-cloud__text-to-speech","response":"success"},{"item":"google-ddns","response":"success"},{"item":"google-drive-realtime-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-earth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-fonts","response":"success"},{"item":"google-images","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-libphonenumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-map-react","response":"success"},{"item":"google-maps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-maps-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-protobuf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-translate-api","response":"success"},{"item":"google.analytics","response":"success"},{"item":"google.feeds","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.fonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.geolocation","response":"success"},{"item":"google.picker","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.script.client-side","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.visualization","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google__maps","response":"success"},{"item":"google__markerclustererplus","response":"success"},{"item":"googlemaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlemaps.infobubble","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlepay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"got","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"graceful-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gradient-string","response":"success"},{"item":"graham_scan","response":"success"},{"item":"gramps__rest-helpers","response":"success"},{"item":"graphite","response":"success"},{"item":"graphite-udp","response":"success"},{"item":"graphlib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"graphlib-dot","response":"success"},{"item":"graphql-api-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphql-bigint","response":"success"},{"item":"graphql-date","response":"success"},{"item":"graphql-deduplicator","response":"success"},{"item":"graphql-depth-limit","response":"success"},{"item":"graphql-errors","response":"success"},{"item":"graphql-fields","response":"success"},{"item":"graphql-iso-date","response":"success"},{"item":"graphql-list-fields","response":"success"},{"item":"graphql-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"graphql-relay","response":"success"},{"item":"graphql-resolve-batch","response":"success"},{"item":"graphql-resolvers","response":"success"},{"item":"graphql-type-json","response":"success"},{"item":"graphql-type-uuid","response":"success"},{"item":"graphql-upload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphviz","response":"success"},{"item":"grasp","response":"success"},{"item":"gravatar","response":"success"},{"item":"gray-percentage","response":"success"},{"item":"graylog2","response":"success"},{"item":"greasemonkey","response":"success"},{"item":"grecaptcha","response":"success"},{"item":"gregorian-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"gremlin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"grid-template-parser","response":"success"},{"item":"gridfs-stream","response":"success"},{"item":"group-array","response":"success"},{"item":"growing-io","response":"success"},{"item":"grpc-error","response":"success"},{"item":"grunt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"gsap","response":"success"},{"item":"gtag.js","response":"success"},{"item":"gtin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"guardian__prosemirror-invisibles","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"guid","response":"success"},{"item":"gulp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"gulp-angular-templatecache","response":"success"},{"item":"gulp-autoprefixer","response":"success"},{"item":"gulp-babel","response":"success"},{"item":"gulp-batch","response":"success"},{"item":"gulp-bump","response":"success"},{"item":"gulp-cache","response":"success"},{"item":"gulp-cached","response":"success"},{"item":"gulp-change","response":"success"},{"item":"gulp-changed","response":"success"},{"item":"gulp-cheerio","response":"success"},{"item":"gulp-clean-dest","response":"success"},{"item":"gulp-coffeeify","response":"success"},{"item":"gulp-coffeelint","response":"success"},{"item":"gulp-concat","response":"success"},{"item":"gulp-connect","response":"success"},{"item":"gulp-copy","response":"success"},{"item":"gulp-csso","response":"success"},{"item":"gulp-debug","response":"success"},{"item":"gulp-diff","response":"success"},{"item":"gulp-dtsm","response":"success"},{"item":"gulp-espower","response":"success"},{"item":"gulp-file-include","response":"success"},{"item":"gulp-filter","response":"success"},{"item":"gulp-flatten","response":"success"},{"item":"gulp-gh-pages","response":"success"},{"item":"gulp-gzip","response":"success"},{"item":"gulp-header","response":"success"},{"item":"gulp-help","response":"success"},{"item":"gulp-help-doc","response":"success"},{"item":"gulp-html-prettify","response":"success"},{"item":"gulp-html-replace","response":"success"},{"item":"gulp-htmlmin","response":"success"},{"item":"gulp-if","response":"success"},{"item":"gulp-image","response":"success"},{"item":"gulp-image-resize","response":"success"},{"item":"gulp-imagemin","response":"success"},{"item":"gulp-inject","response":"success"},{"item":"gulp-insert","response":"success"},{"item":"gulp-install","response":"success"},{"item":"gulp-intercept","response":"success"},{"item":"gulp-istanbul","response":"success"},{"item":"gulp-jade","response":"success"},{"item":"gulp-jasmine","response":"success"},{"item":"gulp-jasmine-browser","response":"success"},{"item":"gulp-json-editor","response":"success"},{"item":"gulp-json-validator","response":"success"},{"item":"gulp-jsonmin","response":"success"},{"item":"gulp-jsonminify","response":"success"},{"item":"gulp-jspm","response":"success"},{"item":"gulp-less","response":"success"},{"item":"gulp-load-plugins","response":"success"},{"item":"gulp-minify-css","response":"success"},{"item":"gulp-minify-html","response":"success"},{"item":"gulp-mocha","response":"success"},{"item":"gulp-modernizr","response":"success"},{"item":"gulp-msbuild","response":"success"},{"item":"gulp-mustache","response":"success"},{"item":"gulp-newer","response":"success"},{"item":"gulp-ng-annotate","response":"success"},{"item":"gulp-nodemon","response":"success"},{"item":"gulp-nunit-runner","response":"success"},{"item":"gulp-plumber","response":"success"},{"item":"gulp-postcss","response":"success"},{"item":"gulp-protractor","response":"success"},{"item":"gulp-pug-i18n","response":"success"},{"item":"gulp-remember","response":"success"},{"item":"gulp-rename","response":"success"},{"item":"gulp-replace","response":"success"},{"item":"gulp-responsive-images","response":"success"},{"item":"gulp-rev","response":"success"},{"item":"gulp-rev-replace","response":"success"},{"item":"gulp-ruby-sass","response":"success"},{"item":"gulp-sass","response":"success"},{"item":"gulp-sass-variables","response":"success"},{"item":"gulp-sequence","response":"success"},{"item":"gulp-size","response":"success"},{"item":"gulp-sort","response":"success"},{"item":"gulp-sourcemaps","response":"success"},{"item":"gulp-strip-comments","response":"success"},{"item":"gulp-strip-debug","response":"success"},{"item":"gulp-stylus","response":"success"},{"item":"gulp-svg-sprite","response":"success"},{"item":"gulp-svgmin","response":"success"},{"item":"gulp-tap","response":"success"},{"item":"gulp-task-listing","response":"success"},{"item":"gulp-template","response":"success"},{"item":"gulp-terser","response":"success"},{"item":"gulp-tsd","response":"success"},{"item":"gulp-uglify","response":"success"},{"item":"gulp-useref","response":"success"},{"item":"gulp-util","response":"success"},{"item":"gulp-watch","response":"success"},{"item":"gulp-zip","response":"success"},{"item":"gun","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"gyronorm","response":"success"},{"item":"gzip-js","response":"success"},{"item":"h2o2","response":"success"},{"item":"halfred","response":"success"},{"item":"halogen","response":"success"},{"item":"halogenium","response":"success"},{"item":"hammerjs","response":"success"},{"item":"handlebars-helpers","response":"success"},{"item":"hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi-auth-basic","response":"success"},{"item":"hapi-auth-bearer-token","response":"success"},{"item":"hapi-auth-cookie","response":"success"},{"item":"hapi-decorators","response":"success"},{"item":"hapi-pino","response":"success"},{"item":"hapi-server-session","response":"success"},{"item":"hapi__b64","response":"success"},{"item":"hapi__basic","response":"success"},{"item":"hapi__bell","response":"success"},{"item":"hapi__catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__catbox-memcached","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"hapi__catbox-memory","response":"success"},{"item":"hapi__catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"hapi__cookie","response":"success"},{"item":"hapi__crumb","response":"success"},{"item":"hapi__glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__h2o2","response":"success"},{"item":"hapi__hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__hawk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__inert","response":"success"},{"item":"hapi__joi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"hapi__mimos","response":"success"},{"item":"hapi__nes","response":"success"},{"item":"hapi__podium","response":"success"},{"item":"hapi__shot","response":"success"},{"item":"hapi__sntp","response":"success"},{"item":"hapi__vision","response":"success"},{"item":"hapi__yar","response":"success"},{"item":"happypack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"har-format","response":"success"},{"item":"hard-source-webpack-plugin","response":"success"},{"item":"hark","response":"success"},{"item":"harmon","response":"success"},{"item":"harmony-proxy","response":"success"},{"item":"has-ansi","response":"success"},{"item":"hash-file","response":"success"},{"item":"hash-it","response":"success"},{"item":"hash-stream","response":"success"},{"item":"hash-sum","response":"success"},{"item":"hasher","response":"success"},{"item":"hashids","response":"success"},{"item":"hashmap","response":"success"},{"item":"hashring","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"hashset","response":"success"},{"item":"hashtable","response":"success"},{"item":"hashtag-regex","response":"success"},{"item":"hast","response":"success"},{"item":"hat","response":"success"},{"item":"haversine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hdkey","response":"success"},{"item":"he","response":"success"},{"item":"headroom","response":"success"},{"item":"heap","response":"success"},{"item":"heapdump","response":"success"},{"item":"heatmap.js","response":"success"},{"item":"hedron","response":"success"},{"item":"hellojs","response":"success"},{"item":"hellosign-embedded","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"helmet","response":"success"},{"item":"heredatalens","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heremaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heroku-logger","response":"success"},{"item":"hex-rgba","response":"success"},{"item":"hexo","response":"success"},{"item":"hexo-bunyan","response":"success"},{"item":"hexo-fs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"hexo-log","response":"success"},{"item":"hexo-util","response":"success"},{"item":"hh-mm-ss","response":"success"},{"item":"hig__button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"highcharts-ng","response":"success"},{"item":"highland","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"highlight-words-core","response":"success"},{"item":"highlight.js","response":"success"},{"item":"highlightjs","response":"success"},{"item":"hiredis","response":"success"},{"item":"hirestime","response":"success"},{"item":"history","response":"success"},{"item":"history.js","response":"success"},{"item":"historykana","response":"success"},{"item":"hjson","response":"success"},{"item":"hls-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hls.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"hoek","response":"success"},{"item":"hogan.js","response":"success"},{"item":"hoist-non-react-statics","response":"success"},{"item":"holderjs","response":"success"},{"item":"honeybadger","response":"success"},{"item":"hooker","response":"success"},{"item":"hookrouter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hopscotch","response":"success"},{"item":"host-validation","response":"success"},{"item":"hosted-git-info","response":"success"},{"item":"hostile","response":"success"},{"item":"howler","response":"success"},{"item":"hoxy","response":"success"},{"item":"hpp","response":"success"},{"item":"html-entities","response":"success"},{"item":"html-minifier","response":"success"},{"item":"html-minifier-terser","response":"success"},{"item":"html-parser","response":"success"},{"item":"html-pdf","response":"success"},{"item":"html-tag-names","response":"success"},{"item":"html-to-draftjs","response":"success"},{"item":"html-to-text","response":"success"},{"item":"html-truncate","response":"success"},{"item":"html-validator","response":"success"},{"item":"html-void-elements","response":"success"},{"item":"html-webpack-plugin","response":"success"},{"item":"html-webpack-template","response":"success"},{"item":"html2canvas","response":"success"},{"item":"html5-history","response":"success"},{"item":"html5-to-pdf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"html5plus","response":"success"},{"item":"htmlbars-inline-precompile","response":"success"},{"item":"htmlescape","response":"success"},{"item":"htmlhint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"htmlparser2","response":"success"},{"item":"htmltojsx","response":"success"},{"item":"http-assert","response":"success"},{"item":"http-aws-es","response":"success"},{"item":"http-build-query","response":"success"},{"item":"http-cache-semantics","response":"success"},{"item":"http-codes","response":"success"},{"item":"http-context","response":"success"},{"item":"http-errors","response":"success"},{"item":"http-link-header","response":"success"},{"item":"http-proxy","response":"success"},{"item":"http-proxy-agent","response":"success"},{"item":"http-proxy-middleware","response":"success"},{"item":"http-rx","response":"success"},{"item":"http-server","response":"success"},{"item":"http-string-parser","response":"success"},{"item":"httperr","response":"success"},{"item":"hubot","response":"success"},{"item":"hubspot-pace","response":"success"},{"item":"human-date","response":"success"},{"item":"human-interval","response":"success"},{"item":"humane-js","response":"success"},{"item":"humanize-duration","response":"success"},{"item":"humanize-ms","response":"success"},{"item":"humanize-plus","response":"success"},{"item":"humanparser","response":"success"},{"item":"hummus-recipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"humps","response":"success"},{"item":"hyco-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"hyper-aws4","response":"success"},{"item":"hyperscript","response":"success"},{"item":"hypertext-application-language","response":"success"},{"item":"hystrixjs","response":"success"},{"item":"i18n","response":"success"},{"item":"i18n-abide","response":"success"},{"item":"i18n-js","response":"success"},{"item":"i18next-ko","response":"success"},{"item":"i18next-node-fs-backend","response":"success"},{"item":"i18next-sprintf-postprocessor","response":"success"},{"item":"i2c-bus","response":"success"},{"item":"iab-vpaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iarna__toml","response":"success"},{"item":"iban","response":"success"},{"item":"ibm-mobilefirst","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ibm-openapi-validator","response":"success"},{"item":"ibm_db","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ical","response":"success"},{"item":"icepick","response":"success"},{"item":"icheck","response":"success"},{"item":"icon-gen","response":"success"},{"item":"iconv","response":"success"},{"item":"icss-utils","response":"success"},{"item":"identicon.js","response":"success"},{"item":"idyll","response":"success"},{"item":"idyll-ast","response":"success"},{"item":"idyll-compiler","response":"success"},{"item":"idyll-document","response":"success"},{"item":"iferr","response":"success"},{"item":"iframe-resizer","response":"success"},{"item":"ifvisible","response":"success"},{"item":"igdb-api-node","response":"success"},{"item":"ignite-ui","response":"success"},{"item":"ignore-styles","response":"success"},{"item":"ignore-walk","response":"success"},{"item":"iltorb","response":"success"},{"item":"image-thumbnail","response":"success"},{"item":"imagemagick","response":"success"},{"item":"imagemagick-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imagemapster","response":"success"},{"item":"imagemin","response":"success"},{"item":"imagemin-gifsicle","response":"success"},{"item":"imagemin-jpegtran","response":"success"},{"item":"imagemin-mozjpeg","response":"success"},{"item":"imagemin-optipng","response":"success"},{"item":"imagemin-pngquant","response":"success"},{"item":"imagemin-svgo","response":"success"},{"item":"imagemin-webp","response":"success"},{"item":"images","response":"success"},{"item":"imagesloaded","response":"success"},{"item":"imap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"imap-simple","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imgur-rest-api","response":"success"},{"item":"immediate","response":"success"},{"item":"imperium","response":"success"},{"item":"impress","response":"success"},{"item":"imsi-grok","response":"success"},{"item":"imul","response":"success"},{"item":"imurmurhash","response":"success"},{"item":"in-app-purchase","response":"success"},{"item":"inboxsdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"incremental-dom","response":"success"},{"item":"indefinite","response":"success"},{"item":"inert","response":"success"},{"item":"ineum","response":"success"},{"item":"inflation","response":"success"},{"item":"inflected","response":"success"},{"item":"inflection","response":"success"},{"item":"infobox-parser","response":"success"},{"item":"inherits","response":"success"},{"item":"ini","response":"success"},{"item":"iniparser","response":"success"},{"item":"init-package-json","response":"success"},{"item":"ink-select-input","response":"success"},{"item":"ink-spinner","response":"success"},{"item":"ink-table","response":"success"},{"item":"ink-testing-library","response":"success"},{"item":"ink-text-input","response":"success"},{"item":"inline-critical","response":"success"},{"item":"inline-css","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"inline-style-prefixer","response":"success"},{"item":"input-moment","response":"success"},{"item":"inputmask","response":"success"},{"item":"inquirer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"inquirer-npm-name","response":"success"},{"item":"insert-css","response":"success"},{"item":"insert-module-globals","response":"success"},{"item":"insert-text-at-cursor","response":"success"},{"item":"insight","response":"success"},{"item":"inspectlet-es","response":"success"},{"item":"integer","response":"success"},{"item":"integrate-adaptive-simpson","response":"success"},{"item":"intercept-stdout","response":"success"},{"item":"intercom-client","response":"success"},{"item":"intercom-web","response":"success"},{"item":"intercomjs","response":"success"},{"item":"interface-datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"internal-slot","response":"success"},{"item":"interpret","response":"success"},{"item":"intersects","response":"success"},{"item":"intersperse","response":"success"},{"item":"intl","response":"success"},{"item":"intl-tel-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/intl-tel-input/index.d.ts(125,30): error TS2304: Cannot find name 'JQueryDeferred'.\n"},{"item":"intrinsic-scale","response":"success"},{"item":"intro.js","response":"success"},{"item":"invariant","response":"success"},{"item":"inversify-devtools","response":"success"},{"item":"iobroker","response":"success"},{"item":"ion-rangeslider","response":"success"},{"item":"iopipe__iopipe","response":"success"},{"item":"ioredis","response":"success"},{"item":"iost-contract","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/iost-contract"},{"item":"iota.lib.js","response":"success"},{"item":"ip","response":"success"},{"item":"ip-address","response":"success"},{"item":"ip-subnet-calculator","response":"success"},{"item":"ipcheck","response":"success"},{"item":"irc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iri","response":"success"},{"item":"iron","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"is","response":"success"},{"item":"is-absolute","response":"success"},{"item":"is-alphanumerical","response":"success"},{"item":"is-array","response":"success"},{"item":"is-base64","response":"success"},{"item":"is-blank","response":"success"},{"item":"is-buffer","response":"success"},{"item":"is-callable","response":"success"},{"item":"is-charging","response":"success"},{"item":"is-ci","response":"success"},{"item":"is-color","response":"success"},{"item":"is-date-object","response":"success"},{"item":"is-dotdir","response":"success"},{"item":"is-dotfile","response":"success"},{"item":"is-empty","response":"success"},{"item":"is-empty-object","response":"success"},{"item":"is-even","response":"success"},{"item":"is-finite","response":"success"},{"item":"is-function","response":"success"},{"item":"is-generator","response":"success"},{"item":"is-generator-function","response":"success"},{"item":"is-git-url","response":"success"},{"item":"is-glob","response":"success"},{"item":"is-hotkey","response":"success"},{"item":"is-integer","response":"success"},{"item":"is-my-json-valid","response":"success"},{"item":"is-natural-number","response":"success"},{"item":"is-negated-glob","response":"success"},{"item":"is-number","response":"success"},{"item":"is-number-like","response":"success"},{"item":"is-object","response":"success"},{"item":"is-odd","response":"success"},{"item":"is-progressive","response":"success"},{"item":"is-promise","response":"success"},{"item":"is-relative","response":"success"},{"item":"is-relative-path","response":"success"},{"item":"is-running","response":"success"},{"item":"is-ssh","response":"success"},{"item":"is-touch-device","response":"success"},{"item":"is-trademarked","response":"success"},{"item":"is-typedarray","response":"success"},{"item":"is-unc-path","response":"success"},{"item":"is-url","response":"success"},{"item":"is-uuid","response":"success"},{"item":"is-valid-glob","response":"success"},{"item":"is-valid-path","response":"success"},{"item":"is-windows","response":"success"},{"item":"isaac","response":"success"},{"item":"isarray","response":"success"},{"item":"isbn-utils","response":"success"},{"item":"iscroll","response":"success"},{"item":"isexe","response":"success"},{"item":"iso-3166-2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iso8601-localizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"isomorphic-fetch","response":"success"},{"item":"isomorphic-form-data","response":"success"},{"item":"isotope-layout","response":"success"},{"item":"isstream","response":"success"},{"item":"issue-parser","response":"success"},{"item":"istanbul","response":"success"},{"item":"istanbul-lib-coverage","response":"success"},{"item":"istanbul-lib-hook","response":"success"},{"item":"istanbul-lib-instrument","response":"success"},{"item":"istanbul-lib-report","response":"success"},{"item":"istanbul-lib-source-maps","response":"success"},{"item":"istanbul-middleware","response":"success"},{"item":"istanbul-reports","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"istextorbinary","response":"success"},{"item":"it-all","response":"success"},{"item":"it-pushable","response":"success"},{"item":"ityped","response":"success"},{"item":"ix.js","response":"success"},{"item":"jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"jade","response":"success"},{"item":"jaeger-client","response":"success"},{"item":"jake","response":"success"},{"item":"jalaali-js","response":"success"},{"item":"japan-postal-code","response":"success"},{"item":"japanese-holidays","response":"success"},{"item":"jasmine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'statements' of undefined\n"},{"item":"jasmine-ajax","response":"success"},{"item":"jasmine-data-provider","response":"success"},{"item":"jasmine-data_driven_tests","response":"success"},{"item":"jasmine-enzyme","response":"success"},{"item":"jasmine-es6-promise-matchers","response":"success"},{"item":"jasmine-fixture","response":"success"},{"item":"jasmine-given","response":"success"},{"item":"jasmine-jquery","response":"success"},{"item":"jasmine-matchers","response":"success"},{"item":"jasmine-node","response":"success"},{"item":"jasmine-promise-matchers","response":"success"},{"item":"jasmine_dom_matchers","response":"success"},{"item":"jasminewd2","response":"success"},{"item":"java","response":"success"},{"item":"java-applet","response":"success"},{"item":"javascript-astar","response":"success"},{"item":"javascript-bignum","response":"success"},{"item":"javascript-state-machine","response":"success"},{"item":"javascript-time-ago","response":"success"},{"item":"jbinary","response":"success"},{"item":"jcanvas","response":"success"},{"item":"jdataview","response":"success"},{"item":"jee-jsf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jenkins","response":"success"},{"item":"jest","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"jest-axe","response":"success"},{"item":"jest-cucumber-fusion","response":"success"},{"item":"jest-dev-server","response":"success"},{"item":"jest-environment-puppeteer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/environment/build/index.d.ts(11,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/jest-environment-puppeteer/node_modules/jest-mock/build/index\"' can only be default-imported using the 'esModuleInterop' flag\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/source-map/build/getCallsite.d.ts(8,100): error TS2503: Cannot find namespace 'callsites'.\n"},{"item":"jest-expect-message","response":"success"},{"item":"jest-image-snapshot","response":"success"},{"item":"jest-in-case","response":"success"},{"item":"jest-json-schema","response":"success"},{"item":"jest-matcher-one-of","response":"success"},{"item":"jest-plugin-context","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/jest-plugin-context"},{"item":"jest-plugin-set","response":"success"},{"item":"jest-sinon","response":"success"},{"item":"jest-specific-snapshot","response":"success"},{"item":"jest-when","response":"success"},{"item":"jexl","response":"success"},{"item":"jfp","response":"success"},{"item":"jfs","response":"success"},{"item":"jira-client","response":"success"},{"item":"jju","response":"success"},{"item":"jjv","response":"success"},{"item":"jjve","response":"success"},{"item":"jmespath","response":"success"},{"item":"johnny-five","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"joi","response":"success"},{"item":"joi-password-complexity","response":"success"},{"item":"joigoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"josa","response":"success"},{"item":"jotform-css.js","response":"success"},{"item":"jpeg-autorotate","response":"success"},{"item":"jpegtran-bin","response":"success"},{"item":"jpm","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jqgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jqrangeslider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-ajax-chain","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-alertable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-animate-scroll","response":"success"},{"item":"jquery-awesome-cursor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-backstretch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-countdown","response":"success"},{"item":"jquery-countto","response":"success"},{"item":"jquery-cropbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-cropper","response":"success"},{"item":"jquery-deferred","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery-deparam","response":"success"},{"item":"jquery-drawer","response":"success"},{"item":"jquery-easy-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-editable-select","response":"success"},{"item":"jquery-focus-exit","response":"success"},{"item":"jquery-focusable","response":"success"},{"item":"jquery-formatdatetime","response":"success"},{"item":"jquery-fullscreen","response":"success"},{"item":"jquery-galleria","response":"success"},{"item":"jquery-gray","response":"success"},{"item":"jquery-handsontable","response":"success"},{"item":"jquery-jcrop","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jquery-jsonrpcclient","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-knob","response":"success"},{"item":"jquery-lazyload","response":"success"},{"item":"jquery-loading-overlay","response":"success"},{"item":"jquery-mask-plugin","response":"success"},{"item":"jquery-maskmoney","response":"success"},{"item":"jquery-match-height","response":"success"},{"item":"jquery-migrate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mockjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mouse-exit","response":"success"},{"item":"jquery-mousewheel","response":"success"},{"item":"jquery-next-id","response":"success"},{"item":"jquery-param","response":"success"},{"item":"jquery-slimscroll","response":"success"},{"item":"jquery-slugify","response":"success"},{"item":"jquery-sortable","response":"success"},{"item":"jquery-steps","response":"success"},{"item":"jquery-sticky","response":"success"},{"item":"jquery-tags-input","response":"success"},{"item":"jquery-timeentry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toast-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toastmessage-plugin","response":"success"},{"item":"jquery-truncate-html","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-typeahead","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-urlparam","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-validation-unobtrusive","response":"success"},{"item":"jquery.address","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.appear","response":"success"},{"item":"jquery.are-you-sure","response":"success"},{"item":"jquery.autosize","response":"success"},{"item":"jquery.base64","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bbq","response":"success"},{"item":"jquery.blockui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bootstrap.wizard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.browser","response":"success"},{"item":"jquery.cleditor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.clientsidelogging","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorpicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.contextmenu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.cookie","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.customselect","response":"success"},{"item":"jquery.cycle","response":"success"},{"item":"jquery.cycle2","response":"success"},{"item":"jquery.dropotron","response":"success"},{"item":"jquery.dynatree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.elang","response":"success"},{"item":"jquery.fancytree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fileupload","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.filtertable","response":"success"},{"item":"jquery.finger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.flagstrap","response":"success"},{"item":"jquery.form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fullscreen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.gridster","response":"success"},{"item":"jquery.growl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"jquery.highlight-bartaz","response":"success"},{"item":"jquery.jnotify","response":"success"},{"item":"jquery.joyride","response":"success"},{"item":"jquery.jsignature","response":"success"},{"item":"jquery.leanmodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.livestampjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery.menuaim","response":"success"},{"item":"jquery.mmenu","response":"success"},{"item":"jquery.nicescroll","response":"success"},{"item":"jquery.notify","response":"success"},{"item":"jquery.notifybar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.noty","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'kind' of undefined\n"},{"item":"jquery.payment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.pin","response":"success"},{"item":"jquery.pjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.placeholder","response":"success"},{"item":"jquery.pnotify","response":"success"},{"item":"jquery.postmessage","response":"success"},{"item":"jquery.prettyphoto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.qrcode","response":"success"},{"item":"jquery.rateit","response":"success"},{"item":"jquery.rowgrid","response":"success"},{"item":"jquery.scrollto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplemodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplepagination","response":"success"},{"item":"jquery.simulate","response":"success"},{"item":"jquery.soap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.sortelements","response":"success"},{"item":"jquery.stickem","response":"success"},{"item":"jquery.superlink","response":"success"},{"item":"jquery.tagsmanager","response":"success"},{"item":"jquery.tile","response":"success"},{"item":"jquery.timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.tinycarousel","response":"success"},{"item":"jquery.tinyscrollbar","response":"success"},{"item":"jquery.tipsy","response":"success"},{"item":"jquery.tools","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.total-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.transit","response":"success"},{"item":"jquery.ui.datetimepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.ui.layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.uniform","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.validation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.watermark","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquerymobile","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jqueryui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"js-base64","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"js-beautify","response":"success"},{"item":"js-captcha","response":"success"},{"item":"js-clipper","response":"success"},{"item":"js-combinatorics","response":"success"},{"item":"js-cookie","response":"success"},{"item":"js-data-angular","response":"success"},{"item":"js-fixtures","response":"success"},{"item":"js-git","response":"success"},{"item":"js-levenshtein","response":"success"},{"item":"js-md5","response":"success"},{"item":"js-money","response":"success"},{"item":"js-nacl","response":"success"},{"item":"js-priority-queue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"js-quantities","response":"success"},{"item":"js-roman-numerals","response":"success"},{"item":"js-schema","response":"success"},{"item":"js-search","response":"success"},{"item":"js-sha512","response":"success"},{"item":"js-string-escape","response":"success"},{"item":"js-to-java","response":"success"},{"item":"js-url","response":"success"},{"item":"js-yaml","response":"success"},{"item":"js.spec","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsbn","response":"success"},{"item":"jschannel","response":"success"},{"item":"jscodeshift","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"jscrollpane","response":"success"},{"item":"jsdeferred","response":"success"},{"item":"jsdoc-to-markdown","response":"success"},{"item":"jsdom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsdom-global","response":"success"},{"item":"jsen","response":"success"},{"item":"jsend","response":"success"},{"item":"jsesc","response":"success"},{"item":"jsfl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'kind' of undefined\n"},{"item":"jsforce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsftp","response":"success"},{"item":"jsgraph","response":"success"},{"item":"jshamcrest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsmediatags","response":"success"},{"item":"jsmockito","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsnox","response":"success"},{"item":"json-buffer","response":"success"},{"item":"json-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"json-file-plus","response":"success"},{"item":"json-form-data","response":"success"},{"item":"json-js","response":"success"},{"item":"json-merge-patch","response":"success"},{"item":"json-parse-better-errors","response":"success"},{"item":"json-patch","response":"success"},{"item":"json-patch-gen","response":"success"},{"item":"json-pointer","response":"success"},{"item":"json-query","response":"success"},{"item":"json-rpc-random-id","response":"success"},{"item":"json-rpc-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"json-schema","response":"success"},{"item":"json-schema-compare","response":"success"},{"item":"json-schema-merge-allof","response":"success"},{"item":"json-schema-traverse","response":"success"},{"item":"json-server","response":"success"},{"item":"json-socket","response":"success"},{"item":"json-stable-stringify","response":"success"},{"item":"json-stream-stringify","response":"success"},{"item":"json-stringify-safe","response":"success"},{"item":"json-to-ast","response":"success"},{"item":"json2csv","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"json2md","response":"success"},{"item":"json2mq","response":"success"},{"item":"json3","response":"success"},{"item":"json5","response":"success"},{"item":"json8-patch","response":"success"},{"item":"json_ml","response":"success"},{"item":"jsonabc","response":"success"},{"item":"jsonapi-serializer","response":"success"},{"item":"jsoneditor","response":"success"},{"item":"jsoneditor-for-react","response":"success"},{"item":"jsoneditoronline","response":"success"},{"item":"jsonfile","response":"success"},{"item":"jsonic","response":"success"},{"item":"jsonld","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonminify","response":"success"},{"item":"jsonnet","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsonp","response":"success"},{"item":"jsonpack","response":"success"},{"item":"jsonpath","response":"success"},{"item":"jsonpointer","response":"success"},{"item":"jsonquery","response":"success"},{"item":"jsonrpc-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonstream","response":"success"},{"item":"jsontoxml","response":"success"},{"item":"jsonwebtoken","response":"success"},{"item":"jsonwebtoken-promisified","response":"success"},{"item":"jspath","response":"success"},{"item":"jspdf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsprintmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsqrcode","response":"success"},{"item":"jsqubits","response":"success"},{"item":"jsreport-chrome-pdf","response":"success"},{"item":"jsreport-core","response":"success"},{"item":"jsreport-html-embedded-in-docx","response":"success"},{"item":"jsreport-html-to-xlsx","response":"success"},{"item":"jsreport-jsrender","response":"success"},{"item":"jsreport-phantom-pdf","response":"success"},{"item":"jsreport-xlsx","response":"success"},{"item":"jsrp","response":"success"},{"item":"jsrsasign","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jssha","response":"success"},{"item":"jssip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsspec__jsspec","response":"success"},{"item":"jstimezonedetect","response":"success"},{"item":"jstorage","response":"success"},{"item":"jstree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsuite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsum","response":"success"},{"item":"jsuri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"jsurl","response":"success"},{"item":"jsx-chai","response":"success"},{"item":"jszip","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"jug","response":"success"},{"item":"jui","response":"success"},{"item":"jui-core","response":"success"},{"item":"jui-grid","response":"success"},{"item":"jump.js","response":"success"},{"item":"just-clone","response":"success"},{"item":"just-debounce-it","response":"success"},{"item":"just-extend","response":"success"},{"item":"just-map-values","response":"success"},{"item":"just-pick","response":"success"},{"item":"just-safe-get","response":"success"},{"item":"just-safe-set","response":"success"},{"item":"just-snake-case","response":"success"},{"item":"just-throttle","response":"success"},{"item":"jweixin","response":"success"},{"item":"jwk-to-pem","response":"success"},{"item":"jwplayer","response":"success"},{"item":"jws","response":"success"},{"item":"jwt-client","response":"success"},{"item":"jwt-decode","response":"success"},{"item":"jwt-express","response":"success"},{"item":"jwt-simple","response":"success"},{"item":"jwt-then","response":"success"},{"item":"jxon","response":"success"},{"item":"k6","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\n\n../DefinitelyTyped/types/k6/global.d.ts(53,9): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\nnode_modules/typescript/lib/lib.dom.d.ts(19729,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n"},{"item":"kafka-node-avro","response":"success"},{"item":"kamailio-kemi","response":"success"},{"item":"kap-plugin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"karma","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"karma-brief-reporter","response":"success"},{"item":"karma-browserify","response":"success"},{"item":"karma-browserstack-launcher","response":"success"},{"item":"karma-chai","response":"success"},{"item":"karma-chai-sinon","response":"success"},{"item":"karma-chrome-launcher","response":"success"},{"item":"karma-coverage","response":"success"},{"item":"karma-coverage-istanbul-reporter","response":"success"},{"item":"karma-detect-browsers","response":"success"},{"item":"karma-env-preprocessor","response":"success"},{"item":"karma-firefox-launcher","response":"success"},{"item":"karma-fixture","response":"success"},{"item":"karma-html-detailed-reporter","response":"success"},{"item":"karma-ie-launcher","response":"success"},{"item":"karma-jasmine","response":"success"},{"item":"karma-jasmine-html-reporter","response":"success"},{"item":"karma-jasmine-spec-tags","response":"success"},{"item":"karma-jsdom-launcher","response":"success"},{"item":"karma-json-preprocessor","response":"success"},{"item":"karma-json-to-file-reporter","response":"success"},{"item":"karma-junit-reporter","response":"success"},{"item":"karma-material-reporter","response":"success"},{"item":"karma-mocha","response":"success"},{"item":"karma-mocha-reporter","response":"success"},{"item":"karma-parallel","response":"success"},{"item":"karma-remap-coverage","response":"success"},{"item":"karma-snapshot","response":"success"},{"item":"karma-spec-reporter","response":"success"},{"item":"karma-summary-reporter","response":"success"},{"item":"karma-webpack","response":"success"},{"item":"katex","response":"success"},{"item":"kcors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"kd-tree-javascript","response":"success"},{"item":"kdbush","response":"success"},{"item":"kdbxweb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"keen-tracking","response":"success"},{"item":"kefir","response":"success"},{"item":"kendo-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"kerberos","response":"success"},{"item":"keyboardjs","response":"success"},{"item":"keycloak-connect","response":"success"},{"item":"keygrip","response":"success"},{"item":"keymaster","response":"success"},{"item":"keymirror","response":"success"},{"item":"keypress.js","response":"success"},{"item":"keystonejs__adapter-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"keystonejs__adapter-mongoose","response":"success"},{"item":"keystonejs__apollo-helpers","response":"success"},{"item":"keystonejs__app-admin-ui","response":"success"},{"item":"keystonejs__app-graphql","response":"success"},{"item":"keystonejs__app-next","response":"success"},{"item":"keystonejs__app-nuxt","response":"success"},{"item":"keystonejs__app-static","response":"success"},{"item":"keystonejs__auth-passport","response":"success"},{"item":"keystonejs__auth-password","response":"success"},{"item":"keystonejs__email","response":"success"},{"item":"keystonejs__fields","response":"success"},{"item":"keystonejs__file-adapters","response":"success"},{"item":"keystonejs__keystone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"keystonejs__list-plugins","response":"success"},{"item":"keystonejs__logger","response":"success"},{"item":"keystonejs__oembed-adapters","response":"success"},{"item":"keystonejs__session","response":"success"},{"item":"keysym","response":"success"},{"item":"keyv","response":"success"},{"item":"keyv__mongo","response":"success"},{"item":"keyv__mysql","response":"success"},{"item":"keyv__postgres","response":"success"},{"item":"keyv__redis","response":"success"},{"item":"keyv__sqlite","response":"success"},{"item":"kii-cloud-sdk","response":"success"},{"item":"kik-browser","response":"success"},{"item":"kind-of","response":"success"},{"item":"kineticjs","response":"success"},{"item":"kissfft-js","response":"success"},{"item":"kiwicom__orbit-design-tokens","response":"success"},{"item":"klaw","response":"success"},{"item":"klaw-sync","response":"success"},{"item":"kms-json","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"knex-db-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knex-postgis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knockback","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'kind' of undefined\n"},{"item":"knockout","response":"success"},{"item":"knockout-amd-helpers","response":"success"},{"item":"knockout-postbox","response":"success"},{"item":"knockout-secure-binding","response":"success"},{"item":"knockout-transformations","response":"success"},{"item":"knockout.deferred.updates","response":"success"},{"item":"knockout.editables","response":"success"},{"item":"knockout.es5","response":"success"},{"item":"knockout.kogrid","response":"success"},{"item":"knockout.mapper","response":"success"},{"item":"knockout.mapping","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"knockout.projections","response":"success"},{"item":"knockout.punches","response":"success"},{"item":"knockout.rx","response":"success"},{"item":"knockout.validation","response":"success"},{"item":"knockout.viewmodel","response":"success"},{"item":"knockstrap","response":"success"},{"item":"knuddels-userapps-api","response":"success"},{"item":"knuth-shuffle","response":"success"},{"item":"ko.plus","response":"success"},{"item":"koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-basic-auth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bodyparser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bouncer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bunyan-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cache-control","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-conditional-get","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-csrf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-dec-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"koa-docs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ejs","response":"success"},{"item":"koa-etag","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-favicon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-generic-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-graphql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-helmet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-json-error","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log4","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger-winston","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-morgan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-mount","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-passport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"koa-pino-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-qs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit-lru","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-redis","response":"success"},{"item":"koa-redis-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-response-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-route","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"koa-send","response":"success"},{"item":"koa-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-session-minimal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-sslify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-views","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-webpack","response":"success"},{"item":"koa-websocket","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-xml-body","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-session-redis","response":"success"},{"item":"koa__cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"koji-tools","response":"success"},{"item":"kolite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/kolite"},{"item":"kompression","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"konami.js","response":"success"},{"item":"kos-core","response":"success"},{"item":"kraken-js","response":"success"},{"item":"kramed","response":"success"},{"item":"kss","response":"success"},{"item":"kue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"kue-ui-client","response":"success"},{"item":"kurento-client","response":"success"},{"item":"kurento-utils","response":"success"},{"item":"kuromoji","response":"success"},{"item":"kythe","response":"success"},{"item":"lab","response":"success"},{"item":"labeled-stream-splicer","response":"success"},{"item":"lambda-log","response":"success"},{"item":"lambda-tester","response":"success"},{"item":"lambda-wrapper","response":"success"},{"item":"lang.js","response":"success"},{"item":"langmap","response":"success"},{"item":"lasso","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"later","response":"success"},{"item":"latinize","response":"success"},{"item":"latlon-geohash","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"launchpad","response":"success"},{"item":"layui-layer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"layzr.js","response":"success"},{"item":"lazy-brush","response":"success"},{"item":"lazy-property","response":"success"},{"item":"lazy.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lazypipe","response":"success"},{"item":"ldap-filters","response":"success"},{"item":"ldapjs","response":"success"},{"item":"ldapjs-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leadfoot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"leaflet-areaselect","response":"success"},{"item":"leaflet-curve","response":"success"},{"item":"leaflet-deepzoom","response":"success"},{"item":"leaflet-draw","response":"success"},{"item":"leaflet-editable","response":"success"},{"item":"leaflet-fullscreen","response":"success"},{"item":"leaflet-geocoder-mapzen","response":"success"},{"item":"leaflet-geosearch","response":"success"},{"item":"leaflet-gpx","response":"success"},{"item":"leaflet-groupedlayercontrol","response":"success"},{"item":"leaflet-imageoverlay-rotated","response":"success"},{"item":"leaflet-label","response":"success"},{"item":"leaflet-loading","response":"success"},{"item":"leaflet-mouse-position","response":"success"},{"item":"leaflet-polylinedecorator","response":"success"},{"item":"leaflet-providers","response":"success"},{"item":"leaflet-rastercoords","response":"success"},{"item":"leaflet-responsive-popup","response":"success"},{"item":"leaflet-rotatedmarker","response":"success"},{"item":"leaflet-routing-machine","response":"success"},{"item":"leaflet.awesome-markers","response":"success"},{"item":"leaflet.featuregroup.subgroup","response":"success"},{"item":"leaflet.fullscreen","response":"success"},{"item":"leaflet.gridlayer.googlemutant","response":"success"},{"item":"leaflet.heat","response":"success"},{"item":"leaflet.icon.glyph","response":"success"},{"item":"leaflet.locatecontrol","response":"success"},{"item":"leaflet.markercluster","response":"success"},{"item":"leaflet.markercluster.layersupport","response":"success"},{"item":"leaflet.pancontrol","response":"success"},{"item":"leaflet.pm","response":"success"},{"item":"leaflet.polylinemeasure","response":"success"},{"item":"leaflet.utm","response":"success"},{"item":"leakage","response":"success"},{"item":"leapmotionts","response":"success"},{"item":"ledgerhq__hw-transport","response":"success"},{"item":"ledgerhq__hw-transport-node-hid","response":"success"},{"item":"ledgerhq__hw-transport-u2f","response":"success"},{"item":"ledgerhq__hw-transport-webusb","response":"success"},{"item":"legal-eagle","response":"success"},{"item":"lerna-alias","response":"success"},{"item":"lerna-get-packages","response":"success"},{"item":"less","response":"success"},{"item":"less-middleware","response":"success"},{"item":"less2sass","response":"success"},{"item":"lestate","response":"success"},{"item":"level-codec","response":"success"},{"item":"level-js","response":"success"},{"item":"level-sublevel","response":"success"},{"item":"level-ttl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"leveldown","response":"success"},{"item":"levelup","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"levenshtein","response":"success"},{"item":"lexicographic-integer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"libnpmsearch","response":"success"},{"item":"libpq","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"libqp","response":"success"},{"item":"librato-node","response":"success"},{"item":"libsodium-wrappers","response":"success"},{"item":"libsodium-wrappers-sumo","response":"success"},{"item":"libxmljs","response":"success"},{"item":"libxslt","response":"success"},{"item":"license-checker","response":"success"},{"item":"license-checker-webpack-plugin","response":"success"},{"item":"lifeomic__axios-fetch","response":"success"},{"item":"liftoff","response":"success"},{"item":"light-sdk","response":"success"},{"item":"lightpick","response":"success"},{"item":"lightship","response":"success"},{"item":"lil-uri","response":"success"},{"item":"lil-uuid","response":"success"},{"item":"lime-js","response":"success"},{"item":"line-by-line","response":"success"},{"item":"line-column","response":"success"},{"item":"line-reader","response":"success"},{"item":"linear-gradient","response":"success"},{"item":"lingui__core","response":"success"},{"item":"lingui__macro","response":"success"},{"item":"lingui__react","response":"success"},{"item":"linkify-it","response":"success"},{"item":"linkifyjs","response":"success"},{"item":"list-git-remotes","response":"success"},{"item":"list-stream","response":"success"},{"item":"list.js","response":"success"},{"item":"listr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"little-loader","response":"success"},{"item":"lls","response":"success"},{"item":"load-google-maps-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"loadable__component","response":"success"},{"item":"loadable__server","response":"success"},{"item":"loadable__webpack-plugin","response":"success"},{"item":"loader-runner","response":"success"},{"item":"loader-utils","response":"success"},{"item":"loadicons","response":"success"},{"item":"loadjs","response":"success"},{"item":"loadware","response":"success"},{"item":"lobibox","response":"success"},{"item":"local-dynamo","response":"success"},{"item":"local-storage","response":"success"},{"item":"locale","response":"success"},{"item":"localized-countries","response":"success"},{"item":"localizejs-library","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"localtunnel","response":"success"},{"item":"lockfile","response":"success"},{"item":"lockr","response":"success"},{"item":"locks","response":"success"},{"item":"locutus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lodash","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash-deep","response":"success"},{"item":"lodash-es","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n"},{"item":"lodash-webpack-plugin","response":"success"},{"item":"lodash.add","response":"success"},{"item":"lodash.after","response":"success"},{"item":"lodash.ary","response":"success"},{"item":"lodash.assign","response":"success"},{"item":"lodash.assignin","response":"success"},{"item":"lodash.assigninwith","response":"success"},{"item":"lodash.assignwith","response":"success"},{"item":"lodash.at","response":"success"},{"item":"lodash.attempt","response":"success"},{"item":"lodash.before","response":"success"},{"item":"lodash.bind","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.bindall","response":"success"},{"item":"lodash.bindkey","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.camelcase","response":"success"},{"item":"lodash.capitalize","response":"success"},{"item":"lodash.castarray","response":"success"},{"item":"lodash.ceil","response":"success"},{"item":"lodash.chunk","response":"success"},{"item":"lodash.clamp","response":"success"},{"item":"lodash.clone","response":"success"},{"item":"lodash.clonedeep","response":"success"},{"item":"lodash.clonedeepwith","response":"success"},{"item":"lodash.clonewith","response":"success"},{"item":"lodash.compact","response":"success"},{"item":"lodash.concat","response":"success"},{"item":"lodash.cond","response":"success"},{"item":"lodash.constant","response":"success"},{"item":"lodash.countby","response":"success"},{"item":"lodash.create","response":"success"},{"item":"lodash.curry","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.curryright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.debounce","response":"success"},{"item":"lodash.deburr","response":"success"},{"item":"lodash.defaults","response":"success"},{"item":"lodash.defaultsdeep","response":"success"},{"item":"lodash.defer","response":"success"},{"item":"lodash.delay","response":"success"},{"item":"lodash.difference","response":"success"},{"item":"lodash.differenceby","response":"success"},{"item":"lodash.differencewith","response":"success"},{"item":"lodash.divide","response":"success"},{"item":"lodash.drop","response":"success"},{"item":"lodash.dropright","response":"success"},{"item":"lodash.droprightwhile","response":"success"},{"item":"lodash.dropwhile","response":"success"},{"item":"lodash.endswith","response":"success"},{"item":"lodash.eq","response":"success"},{"item":"lodash.escape","response":"success"},{"item":"lodash.escaperegexp","response":"success"},{"item":"lodash.every","response":"success"},{"item":"lodash.fill","response":"success"},{"item":"lodash.filter","response":"success"},{"item":"lodash.find","response":"success"},{"item":"lodash.findindex","response":"success"},{"item":"lodash.findkey","response":"success"},{"item":"lodash.findlast","response":"success"},{"item":"lodash.findlastindex","response":"success"},{"item":"lodash.findlastkey","response":"success"},{"item":"lodash.first","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.flatmap","response":"success"},{"item":"lodash.flatmapdeep","response":"success"},{"item":"lodash.flatmapdepth","response":"success"},{"item":"lodash.flatten","response":"success"},{"item":"lodash.flattendeep","response":"success"},{"item":"lodash.flattendepth","response":"success"},{"item":"lodash.flip","response":"success"},{"item":"lodash.floor","response":"success"},{"item":"lodash.flow","response":"success"},{"item":"lodash.flowright","response":"success"},{"item":"lodash.foreach","response":"success"},{"item":"lodash.foreachright","response":"success"},{"item":"lodash.forin","response":"success"},{"item":"lodash.forinright","response":"success"},{"item":"lodash.forown","response":"success"},{"item":"lodash.forownright","response":"success"},{"item":"lodash.frompairs","response":"success"},{"item":"lodash.functions","response":"success"},{"item":"lodash.functionsin","response":"success"},{"item":"lodash.get","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash.groupby","response":"success"},{"item":"lodash.gt","response":"success"},{"item":"lodash.gte","response":"success"},{"item":"lodash.has","response":"success"},{"item":"lodash.hasin","response":"success"},{"item":"lodash.head","response":"success"},{"item":"lodash.identity","response":"success"},{"item":"lodash.includes","response":"success"},{"item":"lodash.indexof","response":"success"},{"item":"lodash.initial","response":"success"},{"item":"lodash.inrange","response":"success"},{"item":"lodash.intersection","response":"success"},{"item":"lodash.intersectionby","response":"success"},{"item":"lodash.intersectionwith","response":"success"},{"item":"lodash.invert","response":"success"},{"item":"lodash.invertby","response":"success"},{"item":"lodash.invoke","response":"success"},{"item":"lodash.invokemap","response":"success"},{"item":"lodash.isarguments","response":"success"},{"item":"lodash.isarray","response":"success"},{"item":"lodash.isarraybuffer","response":"success"},{"item":"lodash.isarraylike","response":"success"},{"item":"lodash.isarraylikeobject","response":"success"},{"item":"lodash.isboolean","response":"success"},{"item":"lodash.isbuffer","response":"success"},{"item":"lodash.isdate","response":"success"},{"item":"lodash.iselement","response":"success"},{"item":"lodash.isempty","response":"success"},{"item":"lodash.isequal","response":"success"},{"item":"lodash.isequalwith","response":"success"},{"item":"lodash.iserror","response":"success"},{"item":"lodash.isfinite","response":"success"},{"item":"lodash.isfunction","response":"success"},{"item":"lodash.isinteger","response":"success"},{"item":"lodash.islength","response":"success"},{"item":"lodash.ismap","response":"success"},{"item":"lodash.ismatch","response":"success"},{"item":"lodash.ismatchwith","response":"success"},{"item":"lodash.isnan","response":"success"},{"item":"lodash.isnative","response":"success"},{"item":"lodash.isnil","response":"success"},{"item":"lodash.isnull","response":"success"},{"item":"lodash.isnumber","response":"success"},{"item":"lodash.isobject","response":"success"},{"item":"lodash.isobjectlike","response":"success"},{"item":"lodash.isplainobject","response":"success"},{"item":"lodash.isregexp","response":"success"},{"item":"lodash.issafeinteger","response":"success"},{"item":"lodash.isset","response":"success"},{"item":"lodash.isstring","response":"success"},{"item":"lodash.issymbol","response":"success"},{"item":"lodash.istypedarray","response":"success"},{"item":"lodash.isundefined","response":"success"},{"item":"lodash.isweakmap","response":"success"},{"item":"lodash.isweakset","response":"success"},{"item":"lodash.iteratee","response":"success"},{"item":"lodash.join","response":"success"},{"item":"lodash.kebabcase","response":"success"},{"item":"lodash.keyby","response":"success"},{"item":"lodash.keys","response":"success"},{"item":"lodash.keysin","response":"success"},{"item":"lodash.last","response":"success"},{"item":"lodash.lastindexof","response":"success"},{"item":"lodash.lowercase","response":"success"},{"item":"lodash.lowerfirst","response":"success"},{"item":"lodash.lt","response":"success"},{"item":"lodash.lte","response":"success"},{"item":"lodash.mapkeys","response":"success"},{"item":"lodash.mapvalues","response":"success"},{"item":"lodash.matches","response":"success"},{"item":"lodash.matchesproperty","response":"success"},{"item":"lodash.max","response":"success"},{"item":"lodash.maxby","response":"success"},{"item":"lodash.mean","response":"success"},{"item":"lodash.meanby","response":"success"},{"item":"lodash.memoize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.merge","response":"success"},{"item":"lodash.mergewith","response":"success"},{"item":"lodash.method","response":"success"},{"item":"lodash.methodof","response":"success"},{"item":"lodash.min","response":"success"},{"item":"lodash.minby","response":"success"},{"item":"lodash.mixin","response":"success"},{"item":"lodash.multiply","response":"success"},{"item":"lodash.negate","response":"success"},{"item":"lodash.noop","response":"success"},{"item":"lodash.now","response":"success"},{"item":"lodash.nth","response":"success"},{"item":"lodash.ntharg","response":"success"},{"item":"lodash.omit","response":"success"},{"item":"lodash.omitby","response":"success"},{"item":"lodash.once","response":"success"},{"item":"lodash.orderby","response":"success"},{"item":"lodash.over","response":"success"},{"item":"lodash.overargs","response":"success"},{"item":"lodash.overevery","response":"success"},{"item":"lodash.oversome","response":"success"},{"item":"lodash.pad","response":"success"},{"item":"lodash.padend","response":"success"},{"item":"lodash.padstart","response":"success"},{"item":"lodash.parseint","response":"success"},{"item":"lodash.partial","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partialright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partition","response":"success"},{"item":"lodash.pick","response":"success"},{"item":"lodash.pickby","response":"success"},{"item":"lodash.property","response":"success"},{"item":"lodash.propertyof","response":"success"},{"item":"lodash.pull","response":"success"},{"item":"lodash.pullall","response":"success"},{"item":"lodash.pullallby","response":"success"},{"item":"lodash.pullallwith","response":"success"},{"item":"lodash.pullat","response":"success"},{"item":"lodash.random","response":"success"},{"item":"lodash.range","response":"success"},{"item":"lodash.rangeright","response":"success"},{"item":"lodash.rearg","response":"success"},{"item":"lodash.reduce","response":"success"},{"item":"lodash.reduceright","response":"success"},{"item":"lodash.reject","response":"success"},{"item":"lodash.remove","response":"success"},{"item":"lodash.repeat","response":"success"},{"item":"lodash.replace","response":"success"},{"item":"lodash.rest","response":"success"},{"item":"lodash.result","response":"success"},{"item":"lodash.reverse","response":"success"},{"item":"lodash.round","response":"success"},{"item":"lodash.sample","response":"success"},{"item":"lodash.samplesize","response":"success"},{"item":"lodash.set","response":"success"},{"item":"lodash.setwith","response":"success"},{"item":"lodash.shuffle","response":"success"},{"item":"lodash.size","response":"success"},{"item":"lodash.slice","response":"success"},{"item":"lodash.snakecase","response":"success"},{"item":"lodash.some","response":"success"},{"item":"lodash.sortby","response":"success"},{"item":"lodash.sortedindex","response":"success"},{"item":"lodash.sortedindexby","response":"success"},{"item":"lodash.sortedindexof","response":"success"},{"item":"lodash.sortedlastindex","response":"success"},{"item":"lodash.sortedlastindexby","response":"success"},{"item":"lodash.sortedlastindexof","response":"success"},{"item":"lodash.sorteduniq","response":"success"},{"item":"lodash.sorteduniqby","response":"success"},{"item":"lodash.split","response":"success"},{"item":"lodash.spread","response":"success"},{"item":"lodash.startcase","response":"success"},{"item":"lodash.startswith","response":"success"},{"item":"lodash.stubfalse","response":"success"},{"item":"lodash.stubtrue","response":"success"},{"item":"lodash.subtract","response":"success"},{"item":"lodash.sum","response":"success"},{"item":"lodash.sumby","response":"success"},{"item":"lodash.tail","response":"success"},{"item":"lodash.take","response":"success"},{"item":"lodash.takeright","response":"success"},{"item":"lodash.takerightwhile","response":"success"},{"item":"lodash.takewhile","response":"success"},{"item":"lodash.template","response":"success"},{"item":"lodash.throttle","response":"success"},{"item":"lodash.times","response":"success"},{"item":"lodash.toarray","response":"success"},{"item":"lodash.tofinite","response":"success"},{"item":"lodash.tointeger","response":"success"},{"item":"lodash.tolength","response":"success"},{"item":"lodash.tolower","response":"success"},{"item":"lodash.tonumber","response":"success"},{"item":"lodash.topairs","response":"success"},{"item":"lodash.topairsin","response":"success"},{"item":"lodash.topath","response":"success"},{"item":"lodash.toplainobject","response":"success"},{"item":"lodash.tosafeinteger","response":"success"},{"item":"lodash.tostring","response":"success"},{"item":"lodash.toupper","response":"success"},{"item":"lodash.transform","response":"success"},{"item":"lodash.trim","response":"success"},{"item":"lodash.trimend","response":"success"},{"item":"lodash.trimstart","response":"success"},{"item":"lodash.truncate","response":"success"},{"item":"lodash.unary","response":"success"},{"item":"lodash.unescape","response":"success"},{"item":"lodash.union","response":"success"},{"item":"lodash.unionby","response":"success"},{"item":"lodash.unionwith","response":"success"},{"item":"lodash.uniq","response":"success"},{"item":"lodash.uniqby","response":"success"},{"item":"lodash.uniqueid","response":"success"},{"item":"lodash.uniqwith","response":"success"},{"item":"lodash.unset","response":"success"},{"item":"lodash.unzip","response":"success"},{"item":"lodash.unzipwith","response":"success"},{"item":"lodash.update","response":"success"},{"item":"lodash.updatewith","response":"success"},{"item":"lodash.uppercase","response":"success"},{"item":"lodash.upperfirst","response":"success"},{"item":"lodash.values","response":"success"},{"item":"lodash.valuesin","response":"success"},{"item":"lodash.without","response":"success"},{"item":"lodash.words","response":"success"},{"item":"lodash.wrap","response":"success"},{"item":"lodash.xor","response":"success"},{"item":"lodash.xorby","response":"success"},{"item":"lodash.xorwith","response":"success"},{"item":"lodash.zip","response":"success"},{"item":"lodash.zipobject","response":"success"},{"item":"lodash.zipobjectdeep","response":"success"},{"item":"lodash.zipwith","response":"success"},{"item":"log-process-errors","response":"success"},{"item":"logat","response":"success"},{"item":"logfmt","response":"success"},{"item":"logg","response":"success"},{"item":"logger","response":"success"},{"item":"loggly","response":"success"},{"item":"login-with-amazon-sdk-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"logrocket-react","response":"success"},{"item":"logrotate-stream","response":"success"},{"item":"lokijs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"lolex","response":"success"},{"item":"long","response":"success"},{"item":"loopback","response":"success"},{"item":"loopback-boot","response":"success"},{"item":"loopbench","response":"success"},{"item":"looper","response":"success"},{"item":"lory.js","response":"success"},{"item":"lossless-json","response":"success"},{"item":"lovefield","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lowdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"lowlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lozad","response":"success"},{"item":"lru-cache","response":"success"},{"item":"lscache","response":"success"},{"item":"lscache","response":"success"},{"item":"ltx","response":"success"},{"item":"luaparse","response":"success"},{"item":"lucene","response":"success"},{"item":"lunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"lusca","response":"success"},{"item":"luxon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lwip","response":"success"},{"item":"lyric-parser","response":"success"},{"item":"lyricist","response":"success"},{"item":"lz-string","response":"success"},{"item":"lzma-native","response":"success"},{"item":"macaca-circular-json","response":"success"},{"item":"macrotask","response":"success"},{"item":"magic-number","response":"success"},{"item":"magicsuggest","response":"success"},{"item":"magnet-uri","response":"success"},{"item":"mailcheck","response":"success"},{"item":"maildev","response":"success"},{"item":"mailgen","response":"success"},{"item":"mailgun-js","response":"success"},{"item":"mailparser","response":"success"},{"item":"main-bower-files","response":"success"},{"item":"mainloop.js","response":"success"},{"item":"maker.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"makeup-expander","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"makeup-floating-label","response":"success"},{"item":"makeup-keyboard-trap","response":"success"},{"item":"makeup-prevent-scroll-keys","response":"success"},{"item":"makeup-screenreader-trap","response":"success"},{"item":"mandrill-api","response":"success"},{"item":"mangopay2-nodejs-sdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"map-to-obj","response":"success"},{"item":"mapbox","response":"success"},{"item":"mapbox-gl","response":"success"},{"item":"mapbox-gl-leaflet","response":"success"},{"item":"mapbox__geo-viewport","response":"success"},{"item":"mapbox__geojson-area","response":"success"},{"item":"mapbox__mapbox-sdk","response":"success"},{"item":"mapbox__polyline","response":"success"},{"item":"mapbox__s3urls","response":"success"},{"item":"mapbox__shelf-pack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"mapbox__sphericalmercator","response":"success"},{"item":"mapbox__tile-cover","response":"success"},{"item":"mapnik","response":"success"},{"item":"mapsjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mariasql","response":"success"},{"item":"mark.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"markdown-draft-js","response":"success"},{"item":"markdown-it","response":"success"},{"item":"markdown-it-anchor","response":"success"},{"item":"markdown-it-container","response":"success"},{"item":"markdown-it-lazy-headers","response":"success"},{"item":"markdown-magic","response":"success"},{"item":"markdown-pdf","response":"success"},{"item":"markdown-table","response":"success"},{"item":"markdown-to-jsx","response":"success"},{"item":"markdownlint","response":"success"},{"item":"marked","response":"success"},{"item":"marked-terminal","response":"success"},{"item":"markedjs__html-differ","response":"success"},{"item":"marker-animate-unobtrusive","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"markitup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"marko","response":"success"},{"item":"maskedinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"masonry-layout","response":"success"},{"item":"massive","response":"success"},{"item":"match-media-mock","response":"success"},{"item":"match-sorter","response":"success"},{"item":"matchdep","response":"success"},{"item":"material-design-lite","response":"success"},{"item":"material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"material-ui-datatables","response":"success"},{"item":"material-ui-pagination","response":"success"},{"item":"material__animation","response":"success"},{"item":"material__auto-init","response":"success"},{"item":"material__base","response":"success"},{"item":"material__checkbox","response":"success"},{"item":"material__chips","response":"success"},{"item":"material__dialog","response":"success"},{"item":"material__dom","response":"success"},{"item":"material__drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__floating-label","response":"success"},{"item":"material__form-field","response":"success"},{"item":"material__grid-list","response":"success"},{"item":"material__icon-toggle","response":"success"},{"item":"material__line-ripple","response":"success"},{"item":"material__linear-progress","response":"success"},{"item":"material__list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__notched-outline","response":"success"},{"item":"material__radio","response":"success"},{"item":"material__ripple","response":"success"},{"item":"material__select","response":"success"},{"item":"material__selection-control","response":"success"},{"item":"material__slider","response":"success"},{"item":"material__snackbar","response":"success"},{"item":"material__tab","response":"success"},{"item":"material__tabs","response":"success"},{"item":"material__textfield","response":"success"},{"item":"material__toolbar","response":"success"},{"item":"material__top-app-bar","response":"success"},{"item":"materialize-css","response":"success"},{"item":"math-expression-evaluator","response":"success"},{"item":"math-random","response":"success"},{"item":"math-sign","response":"success"},{"item":"math-trunc","response":"success"},{"item":"math3d","response":"success"},{"item":"mathjax","response":"success"},{"item":"mathjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"matrix-appservice-bridge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"matrix-js-sdk","response":"success"},{"item":"matter-js","response":"success"},{"item":"mcrypt","response":"success"},{"item":"mcustomscrollbar","response":"success"},{"item":"md5","response":"success"},{"item":"md5-file","response":"success"},{"item":"mdast","response":"success"},{"item":"mdns","response":"success"},{"item":"mdurl","response":"success"},{"item":"mdx-js__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"media-typer","response":"success"},{"item":"medium-editor","response":"success"},{"item":"megajs","response":"success"},{"item":"mem-cache","response":"success"},{"item":"mem-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mem-fs-editor","response":"success"},{"item":"memcached","response":"success"},{"item":"memdown","response":"success"},{"item":"memjs","response":"success"},{"item":"memoizee","response":"success"},{"item":"memory-cache","response":"success"},{"item":"memory-fs","response":"success"},{"item":"memory-pager","response":"success"},{"item":"memorystream","response":"success"},{"item":"memwatch-next","response":"success"},{"item":"meow","response":"success"},{"item":"merge-descriptors","response":"success"},{"item":"merge-env","response":"success"},{"item":"merge-images","response":"success"},{"item":"merge-img","response":"success"},{"item":"merge-objects","response":"success"},{"item":"merge-stream","response":"success"},{"item":"merge2","response":"success"},{"item":"mergerino","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"merkle","response":"success"},{"item":"mermaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mersenne-twister","response":"success"},{"item":"meshblu","response":"success"},{"item":"mess","response":"success"},{"item":"messenger","response":"success"},{"item":"metalsmith","response":"success"},{"item":"meteor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/meteor"},{"item":"meteor-accounts-phone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-astronomy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-collection-hooks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"meteor-jboulhous-dev","response":"success"},{"item":"meteor-persistent-session","response":"success"},{"item":"meteor-prime8consulting-oauth2","response":"success"},{"item":"meteor-publish-composite","response":"success"},{"item":"meteor-roles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-universe-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"method-override","response":"success"},{"item":"methods","response":"success"},{"item":"metric-suffix","response":"success"},{"item":"meyda","response":"success"},{"item":"mfiles","response":"success"},{"item":"micro","response":"success"},{"item":"micro-cors","response":"success"},{"item":"micro-events","response":"success"},{"item":"micromatch","response":"success"},{"item":"micromodal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microrouter","response":"success"},{"item":"microservice-utilities","response":"success"},{"item":"microsoft-ajax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-graph","response":"success"},{"item":"microsoft-live-connect","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-sdk-soap","response":"success"},{"item":"microsoft__typescript-etw","response":"success"},{"item":"microsoftteams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microtime","response":"success"},{"item":"migrate-mongo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"milkcocoa","response":"success"},{"item":"millisecond","response":"success"},{"item":"milliseconds","response":"success"},{"item":"mime","response":"success"},{"item":"mime-db","response":"success"},{"item":"mime-types","response":"success"},{"item":"mimos","response":"success"},{"item":"min-document","response":"success"},{"item":"min-indent","response":"success"},{"item":"mina","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"minapp-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/minapp-env/index.d.ts(14,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n../DefinitelyTyped/types/minapp-env/index.d.ts(90,3): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(292,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1088,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1302,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(4737,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5543,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Symbol\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5587,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Map\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5591,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakMap\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5595,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Set\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5599,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakSet\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5618,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"GeneratorFunction\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5626,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Promise\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5630,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.species]' must be of type 'PromiseConstructor', but here has type 'Function'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5682,3): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\nnode_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts(225,14): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n"},{"item":"mini-css-extract-plugin","response":"success"},{"item":"mini-html-webpack-plugin","response":"success"},{"item":"minilog","response":"success"},{"item":"minimal-bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"minimal-request-promise","response":"success"},{"item":"minimalistic-assert","response":"success"},{"item":"minimatch","response":"success"},{"item":"minimist","response":"success"},{"item":"minimist-options","response":"success"},{"item":"minio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"minipass","response":"success"},{"item":"miniprogram-wxs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\n\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(28,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(96,5): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(368,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(493,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1174,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1179,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1333,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1397,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(42,15): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(56,15): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n"},{"item":"mirrorx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mithril","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mithril-global","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mitm","response":"success"},{"item":"mitsobox","response":"success"},{"item":"mixpanel","response":"success"},{"item":"mixpanel-browser","response":"success"},{"item":"mixto","response":"success"},{"item":"mjml","response":"success"},{"item":"mjml-react","response":"success"},{"item":"mkcert","response":"success"},{"item":"mkdirp","response":"success"},{"item":"mkpath","response":"success"},{"item":"ml-levenberg-marquardt","response":"success"},{"item":"mmmagic","response":"success"},{"item":"mobile-messaging-cordova","response":"success"},{"item":"mobx-apollo","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'find' of undefined\n"},{"item":"mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"mocha-each","response":"success"},{"item":"mocha-phantomjs","response":"success"},{"item":"mocha-prepare","response":"success"},{"item":"mocha-steps","response":"success"},{"item":"mocha-sugar-free","response":"success"},{"item":"mochaccino","response":"success"},{"item":"mock-aws-s3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mock-express-request","response":"success"},{"item":"mock-fs","response":"success"},{"item":"mock-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mock-raf","response":"success"},{"item":"mock-req-res","response":"success"},{"item":"mock-require","response":"success"},{"item":"mockdate","response":"success"},{"item":"mockery","response":"success"},{"item":"mockjs","response":"success"},{"item":"modernizr","response":"success"},{"item":"modesl","response":"success"},{"item":"modular-scale","response":"success"},{"item":"module-alias","response":"success"},{"item":"module-deps","response":"success"},{"item":"moji","response":"success"},{"item":"moment-business","response":"success"},{"item":"moment-business-time","response":"success"},{"item":"moment-duration-format","response":"success"},{"item":"moment-hijri","response":"success"},{"item":"moment-holiday","response":"success"},{"item":"moment-jalaali","response":"success"},{"item":"moment-precise-range-plugin","response":"success"},{"item":"moment-round","response":"success"},{"item":"moment-shortformat","response":"success"},{"item":"moment-strftime2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\n\n../DefinitelyTyped/types/moment-strftime2/index.d.ts(7,26): error TS2307: Cannot find module 'moment'.\n"},{"item":"moment-timezone","response":"success"},{"item":"money-math","response":"success"},{"item":"mongo-sanitize","response":"success"},{"item":"mongodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"mongodb-queue","response":"success"},{"item":"mongodb-uri","response":"success"},{"item":"mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-auto-increment","response":"success"},{"item":"mongoose-autopopulate","response":"success"},{"item":"mongoose-deep-populate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"mongoose-delete","response":"success"},{"item":"mongoose-geojson-schema","response":"success"},{"item":"mongoose-lean-virtuals","response":"success"},{"item":"mongoose-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate-v2","response":"success"},{"item":"mongoose-promise","response":"success"},{"item":"mongoose-seeder","response":"success"},{"item":"mongoose-sequence","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-simple-random","response":"success"},{"item":"mongoose-unique-validator","response":"success"},{"item":"mongorito","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"mongration","response":"success"},{"item":"moo","response":"success"},{"item":"moonjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n"},{"item":"morgan","response":"success"},{"item":"morris.js","response":"success"},{"item":"mosca","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"motion-scroll","response":"success"},{"item":"motor-hat","response":"success"},{"item":"mousetrap","response":"success"},{"item":"move-concurrently","response":"success"},{"item":"moveto","response":"success"},{"item":"moviedb","response":"success"},{"item":"moxios","response":"success"},{"item":"mozilla-readability","response":"success"},{"item":"mozjpeg","response":"success"},{"item":"mpromise","response":"success"},{"item":"mri","response":"success"},{"item":"mrz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"ms","response":"success"},{"item":"msgpack","response":"success"},{"item":"msgpack-lite","response":"success"},{"item":"msgpack5","response":"success"},{"item":"msnodesql","response":"success"},{"item":"mssql","response":"success"},{"item":"mta-h5-analysis","response":"success"},{"item":"mu2","response":"success"},{"item":"mui-datatables","response":"success"},{"item":"muibox","response":"success"},{"item":"muicss","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/muicss"},{"item":"multer","response":"success"},{"item":"multer-gridfs-storage","response":"success"},{"item":"multer-s3","response":"success"},{"item":"multi-progress","response":"success"},{"item":"multi-typeof","response":"success"},{"item":"multiaddr","response":"success"},{"item":"multibase","response":"success"},{"item":"multicodec","response":"success"},{"item":"multimap","response":"success"},{"item":"multiparty","response":"success"},{"item":"multipipe","response":"success"},{"item":"multiplexjs","response":"success"},{"item":"multireducer","response":"success"},{"item":"multisort","response":"success"},{"item":"multistream","response":"success"},{"item":"multivariate-normal","response":"success"},{"item":"multy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"mumath","response":"success"},{"item":"muri","response":"success"},{"item":"murmurhash","response":"success"},{"item":"murmurhash-js","response":"success"},{"item":"murmurhash3js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"musicmatch","response":"success"},{"item":"musicmetadata","response":"success"},{"item":"mustache","response":"success"},{"item":"mustache-express","response":"success"},{"item":"mutexify","response":"success"},{"item":"mv","response":"success"},{"item":"mysql","response":"success"},{"item":"mysql-import","response":"success"},{"item":"mz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"n-readlines","response":"success"},{"item":"n3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"naja","response":"success"},{"item":"named-regexp-groups","response":"success"},{"item":"named-routes","response":"success"},{"item":"nano-equal","response":"success"},{"item":"nanoajax","response":"success"},{"item":"nanoassert","response":"success"},{"item":"nanoevents","response":"success"},{"item":"nanographql","response":"success"},{"item":"nanoid","response":"success"},{"item":"nanomsg","response":"success"},{"item":"nanoscroller","response":"success"},{"item":"nanotimer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"nanp","response":"success"},{"item":"native-toast","response":"success"},{"item":"natural","response":"success"},{"item":"natural-compare","response":"success"},{"item":"natural-compare-lite","response":"success"},{"item":"natural-sort","response":"success"},{"item":"naudiodon","response":"success"},{"item":"naver-whale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navermaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navigo","response":"success"},{"item":"ncom","response":"success"},{"item":"nconf","response":"success"},{"item":"ncp","response":"success"},{"item":"ndarray","response":"success"},{"item":"ndjson","response":"success"},{"item":"ndn-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"nearley","response":"success"},{"item":"neat-csv","response":"success"},{"item":"nedb","response":"success"},{"item":"nedb-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"needle","response":"success"},{"item":"negotiator","response":"success"},{"item":"neo4j","response":"success"},{"item":"nes","response":"success"},{"item":"nestdb","response":"success"},{"item":"nested-error-stacks","response":"success"},{"item":"net-keepalive","response":"success"},{"item":"net-ticks","response":"success"},{"item":"netconf","response":"success"},{"item":"netease-captcha","response":"success"},{"item":"netlify-identity-widget","response":"success"},{"item":"netmask","response":"success"},{"item":"network-interfaces","response":"success"},{"item":"neverbounce","response":"success"},{"item":"new-relic-browser","response":"success"},{"item":"newline-remove","response":"success"},{"item":"newman","response":"success"},{"item":"newrelic","response":"success"},{"item":"newrelic__winston-enricher","response":"success"},{"item":"nexpect","response":"success"},{"item":"next-nprogress","response":"success"},{"item":"next-redux-saga","response":"success"},{"item":"next-seo","response":"success"},{"item":"next-tick","response":"success"},{"item":"nextgen-events","response":"success"},{"item":"ng-command","response":"success"},{"item":"ng-cordova","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/ng-cordova"},{"item":"ng-dialog","response":"success"},{"item":"ng-facebook","response":"success"},{"item":"ng-file-upload","response":"success"},{"item":"ng-flow","response":"success"},{"item":"ng-grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-i18next","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-notify","response":"success"},{"item":"ng-stomp","response":"success"},{"item":"ng-tags-input","response":"success"},{"item":"ngbootbox","response":"success"},{"item":"ngeohash","response":"success"},{"item":"ngkookies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngprogress","response":"success"},{"item":"ngprogress-lite","response":"success"},{"item":"ngreact","response":"success"},{"item":"ngsijs","response":"success"},{"item":"ngstorage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/ngstorage/index.d.ts(41,39): error TS2503: Cannot find namespace 'angular'.\n"},{"item":"ngtoaster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n"},{"item":"ngwysiwyg","response":"success"},{"item":"nice-try","response":"success"},{"item":"nightmare","response":"success"},{"item":"nightwatch","response":"success"},{"item":"nise","response":"success"},{"item":"nivo-slider","response":"success"},{"item":"no-scroll","response":"success"},{"item":"noble","response":"success"},{"item":"noble-mac","response":"success"},{"item":"nodal","response":"success"},{"item":"node","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'statements' of undefined\n"},{"item":"node-7z","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-abi","response":"success"},{"item":"node-apple-receipt-verify","response":"success"},{"item":"node-array-ext","response":"success"},{"item":"node-browser-history","response":"success"},{"item":"node-calendar","response":"success"},{"item":"node-cleanup","response":"success"},{"item":"node-config-manager","response":"success"},{"item":"node-crate","response":"success"},{"item":"node-cron","response":"success"},{"item":"node-dijkstra","response":"success"},{"item":"node-dir","response":"success"},{"item":"node-dogstatsd","response":"success"},{"item":"node-downloader-helper","response":"success"},{"item":"node-easy-cert","response":"success"},{"item":"node-emoji","response":"success"},{"item":"node-expat","response":"success"},{"item":"node-fetch","response":"success"},{"item":"node-fibers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-forge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-gcm","response":"success"},{"item":"node-geocoder","response":"success"},{"item":"node-getopt","response":"success"},{"item":"node-gettext","response":"success"},{"item":"node-gzip","response":"success"},{"item":"node-hid","response":"success"},{"item":"node-horseman","response":"success"},{"item":"node-hue-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-insights","response":"success"},{"item":"node-int64","response":"success"},{"item":"node-ipc","response":"success"},{"item":"node-jose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-jsfl-runner","response":"success"},{"item":"node-localstorage","response":"success"},{"item":"node-loggly-bulk","response":"success"},{"item":"node-mailjet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-memwatch","response":"success"},{"item":"node-mysql-wrapper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"node-notifier","response":"success"},{"item":"node-observer","response":"success"},{"item":"node-openload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"node-os-utils","response":"success"},{"item":"node-pdftk","response":"success"},{"item":"node-persist","response":"success"},{"item":"node-phpass","response":"success"},{"item":"node-polyglot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-powershell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-pushnotifications","response":"success"},{"item":"node-ral","response":"success"},{"item":"node-red","response":"success"},{"item":"node-redis-pubsub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"node-redmine","response":"success"},{"item":"node-resque","response":"success"},{"item":"node-rsa","response":"success"},{"item":"node-sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-sass-middleware","response":"success"},{"item":"node-schedule","response":"success"},{"item":"node-slack","response":"success"},{"item":"node-snap7","response":"success"},{"item":"node-sprite-generator","response":"success"},{"item":"node-ssdp","response":"success"},{"item":"node-ssh","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-static","response":"success"},{"item":"node-statsd","response":"success"},{"item":"node-telegram-bot-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-timecodes","response":"success"},{"item":"node-uuid","response":"success"},{"item":"node-vagrant","response":"success"},{"item":"node-validator","response":"success"},{"item":"node-vault","response":"success"},{"item":"node-wget-promise","response":"success"},{"item":"node-windows","response":"success"},{"item":"node-wit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-xlsx","response":"success"},{"item":"node-xmpp-client","response":"success"},{"item":"node-xmpp-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zendesk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zookeeper-client","response":"success"},{"item":"node-zopfli","response":"success"},{"item":"node-zopfli-es","response":"success"},{"item":"node_redis","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/node_redis"},{"item":"nodecredstash","response":"success"},{"item":"nodegit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nodejs-license-file","response":"success"},{"item":"nodemailer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"nodemailer-direct-transport","response":"success"},{"item":"nodemailer-mailgun-transport","response":"success"},{"item":"nodemailer-pickup-transport","response":"success"},{"item":"nodemailer-ses-transport","response":"success"},{"item":"nodemailer-smtp-pool","response":"success"},{"item":"nodemailer-smtp-transport","response":"success"},{"item":"nodemailer-stub-transport","response":"success"},{"item":"nodemon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"nodeunit","response":"success"},{"item":"noisejs","response":"success"},{"item":"nomnom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nonogram-solver","response":"success"},{"item":"nopt","response":"success"},{"item":"normalize-jss","response":"success"},{"item":"normalize-package-data","response":"success"},{"item":"normalize-path","response":"success"},{"item":"nosleep.js","response":"success"},{"item":"notie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/notie"},{"item":"notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notifyjs","response":"success"},{"item":"notifyjs-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nouislider","response":"success"},{"item":"novnc-core","response":"success"},{"item":"npm","response":"success"},{"item":"npm-cache-filename","response":"success"},{"item":"npm-license-crawler","response":"success"},{"item":"npm-list-author-packages","response":"success"},{"item":"npm-package-arg","response":"success"},{"item":"npm-packlist","response":"success"},{"item":"npm-paths","response":"success"},{"item":"npm-registry-fetch","response":"success"},{"item":"npm-registry-package-info","response":"success"},{"item":"npm-run","response":"success"},{"item":"npm-user-packages","response":"success"},{"item":"npm-which","response":"success"},{"item":"npmlog","response":"success"},{"item":"nprogress","response":"success"},{"item":"ns-api","response":"success"},{"item":"nslog","response":"success"},{"item":"nsqjs","response":"success"},{"item":"nssm","response":"success"},{"item":"ntlm-client","response":"success"},{"item":"nuclear-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n"},{"item":"num2fraction","response":"success"},{"item":"number-is-nan","response":"success"},{"item":"number-to-words","response":"success"},{"item":"numeral","response":"success"},{"item":"numeric","response":"success"},{"item":"numjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks-date","response":"success"},{"item":"nuxtjs__auth","response":"success"},{"item":"nvd3","response":"success"},{"item":"nw.gui","response":"success"},{"item":"nw.js","response":"success"},{"item":"nwmatcher","response":"success"},{"item":"nyaapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"oakdex-pokedex","response":"success"},{"item":"oauth","response":"success"},{"item":"oauth-shim","response":"success"},{"item":"oauth.js","response":"success"},{"item":"oauth2-implicit","response":"success"},{"item":"oauth2-server","response":"success"},{"item":"oauth2orize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"obelisk.js","response":"success"},{"item":"obj-file-parser","response":"success"},{"item":"obj-str","response":"success"},{"item":"object-assign","response":"success"},{"item":"object-assign-deep","response":"success"},{"item":"object-diff","response":"success"},{"item":"object-fit-images","response":"success"},{"item":"object-hash","response":"success"},{"item":"object-inspect","response":"success"},{"item":"object-joiner","response":"success"},{"item":"object-keys","response":"success"},{"item":"object-keys-mapping","response":"success"},{"item":"object-map","response":"success"},{"item":"object-mapper","response":"success"},{"item":"object-merge","response":"success"},{"item":"object-path","response":"success"},{"item":"object-refs","response":"success"},{"item":"object.getownpropertydescriptors","response":"success"},{"item":"object.omit","response":"success"},{"item":"object.pick","response":"success"},{"item":"objtools","response":"success"},{"item":"oblo-util","response":"success"},{"item":"oboe","response":"success"},{"item":"observe-js","response":"success"},{"item":"obsolete-web","response":"success"},{"item":"oclazyload","response":"success"},{"item":"ofe","response":"success"},{"item":"office-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-js-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-runtime","response":"success"},{"item":"offline-js","response":"success"},{"item":"offscreen-canvas","response":"success"},{"item":"offscreencanvas","response":"success"},{"item":"oibackoff","response":"success"},{"item":"oidc-token-manager","response":"success"},{"item":"oja","response":"success"},{"item":"okta__okta-vue","response":"success"},{"item":"ol","response":"success"},{"item":"omelette","response":"success"},{"item":"omggif","response":"success"},{"item":"omit-empty","response":"success"},{"item":"on-finished","response":"success"},{"item":"on-headers","response":"success"},{"item":"on-wake-up","response":"success"},{"item":"once","response":"success"},{"item":"one-time","response":"success"},{"item":"onesignal-cordova-plugin","response":"success"},{"item":"onfleet__node-onfleet","response":"success"},{"item":"oniguruma","response":"success"},{"item":"onionoo","response":"success"},{"item":"ontime","response":"success"},{"item":"open-graph","response":"success"},{"item":"open-wc__testing-karma","response":"success"},{"item":"open-wc__testing-karma-bs","response":"success"},{"item":"open-wc__webpack-import-meta-loader","response":"success"},{"item":"openapi-factory","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opener","response":"success"},{"item":"openfin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"openid","response":"success"},{"item":"openjscad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"openlayers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"openpgp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"openssi-websdk","response":"success"},{"item":"openstack-wrapper","response":"success"},{"item":"opentok","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opentype.js","response":"success"},{"item":"openui5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/openui5"},{"item":"openurl","response":"success"},{"item":"openurl2","response":"success"},{"item":"opossum","response":"success"},{"item":"optics-agent","response":"success"},{"item":"optimist","response":"success"},{"item":"optimize-css-assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"oracle__oraclejet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"oracledb","response":"success"},{"item":"orchestrator","response":"success"},{"item":"orderedmap","response":"success"},{"item":"orientjs","response":"success"},{"item":"original","response":"success"},{"item":"os-homedir","response":"success"},{"item":"os-service","response":"success"},{"item":"os-tmpdir","response":"success"},{"item":"os-utils","response":"success"},{"item":"osenv","response":"success"},{"item":"osmosis","response":"success"},{"item":"osmtogeojson","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ospec","response":"success"},{"item":"osrm","response":"success"},{"item":"osrs-json-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ot","response":"success"},{"item":"ouibounce","response":"success"},{"item":"overlayscrollbars","response":"success"},{"item":"overload-protection","response":"success"},{"item":"owasp-password-strength-test","response":"success"},{"item":"owl.carousel","response":"success"},{"item":"owlcarousel","response":"success"},{"item":"p-fifo","response":"success"},{"item":"p-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"p2","response":"success"},{"item":"p5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"pa11y","response":"success"},{"item":"package-info","response":"success"},{"item":"packery","response":"success"},{"item":"pacote","response":"success"},{"item":"pad-left","response":"success"},{"item":"page","response":"success"},{"item":"page-icon","response":"success"},{"item":"pager__jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"paho-mqtt","response":"success"},{"item":"pako","response":"success"},{"item":"palx","response":"success"},{"item":"pangu","response":"success"},{"item":"papaparse","response":"success"},{"item":"parallel-transform","response":"success"},{"item":"paralleljs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parameterize","response":"success"},{"item":"parcel-bundler","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parcel-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'children' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'parent' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'require' of types 'Module' and 'Module' are not identical.\n"},{"item":"parent-package-json","response":"success"},{"item":"parents","response":"success"},{"item":"parity-pmd","response":"success"},{"item":"parity-pmr","response":"success"},{"item":"parity-poe","response":"success"},{"item":"parquetjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"parse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"parse-author","response":"success"},{"item":"parse-color","response":"success"},{"item":"parse-filepath","response":"success"},{"item":"parse-full-name","response":"success"},{"item":"parse-git-config","response":"success"},{"item":"parse-github-url","response":"success"},{"item":"parse-glob","response":"success"},{"item":"parse-human-date-range","response":"success"},{"item":"parse-json","response":"success"},{"item":"parse-link-header","response":"success"},{"item":"parse-mockdb","response":"success"},{"item":"parse-numeric-range","response":"success"},{"item":"parse-package-name","response":"success"},{"item":"parse-passwd","response":"success"},{"item":"parse-path","response":"success"},{"item":"parse-prefer-header","response":"success"},{"item":"parse-torrent","response":"success"},{"item":"parse-torrent-file","response":"success"},{"item":"parse-unit","response":"success"},{"item":"parse5","response":"success"},{"item":"parse5-html-rewriting-stream","response":"success"},{"item":"parse5-htmlparser2-tree-adapter","response":"success"},{"item":"parse5-parser-stream","response":"success"},{"item":"parse5-plain-text-conversion-stream","response":"success"},{"item":"parse5-sax-parser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"parse5-serializer-stream","response":"success"},{"item":"parsecurrency","response":"success"},{"item":"parseurl","response":"success"},{"item":"parsimmon","response":"success"},{"item":"passport","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'ids' of undefined\n"},{"item":"passport-anonymous","response":"success"},{"item":"passport-auth0","response":"success"},{"item":"passport-azure-ad","response":"success"},{"item":"passport-beam","response":"success"},{"item":"passport-bnet","response":"success"},{"item":"passport-cognito","response":"success"},{"item":"passport-discord","response":"success"},{"item":"passport-facebook","response":"success"},{"item":"passport-facebook-token","response":"success"},{"item":"passport-github","response":"success"},{"item":"passport-github2","response":"success"},{"item":"passport-google-oauth","response":"success"},{"item":"passport-google-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"passport-google-oauth20","response":"success"},{"item":"passport-http","response":"success"},{"item":"passport-http-bearer","response":"success"},{"item":"passport-instagram","response":"success"},{"item":"passport-jwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"passport-kakao","response":"success"},{"item":"passport-linkedin-oauth2","response":"success"},{"item":"passport-local","response":"success"},{"item":"passport-local-mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"passport-microsoft","response":"success"},{"item":"passport-naver","response":"success"},{"item":"passport-oauth2","response":"success"},{"item":"passport-oauth2-client-password","response":"success"},{"item":"passport-oauth2-refresh","response":"success"},{"item":"passport-remember-me-extended","response":"success"},{"item":"passport-saml","response":"success"},{"item":"passport-steam","response":"success"},{"item":"passport-strategy","response":"success"},{"item":"passport-twitter","response":"success"},{"item":"passport-unique-token","response":"success"},{"item":"passport-vkontakte","response":"success"},{"item":"passport-windowsauth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"passport.socketio","response":"success"},{"item":"password","response":"success"},{"item":"password-hash","response":"success"},{"item":"password-hash-and-salt","response":"success"},{"item":"path-is-absolute","response":"success"},{"item":"path-is-inside","response":"success"},{"item":"path-parse","response":"success"},{"item":"path-regex","response":"success"},{"item":"pathfinding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pathjs","response":"success"},{"item":"pathval","response":"success"},{"item":"pathwatcher","response":"success"},{"item":"pause","response":"success"},{"item":"payment","response":"success"},{"item":"paypal-cordova-plugin","response":"success"},{"item":"paypal-rest-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"paystack","response":"success"},{"item":"pbf","response":"success"},{"item":"pbkdf2","response":"success"},{"item":"pdf-fill-form","response":"success"},{"item":"pdf-image","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"pdf-viewer-reactjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"pdf2image","response":"success"},{"item":"pdfjs-dist","response":"success"},{"item":"pdfkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pdfmake","response":"success"},{"item":"pdfobject","response":"success"},{"item":"pebblekitjs","response":"success"},{"item":"peer-dial","response":"success"},{"item":"pegjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pell","response":"success"},{"item":"pem","response":"success"},{"item":"pem-jwk","response":"success"},{"item":"pendo-io-browser","response":"success"},{"item":"perfy","response":"success"},{"item":"permit","response":"success"},{"item":"persona","response":"success"},{"item":"pet-finder-api","response":"success"},{"item":"petit-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg-copy-streams","response":"success"},{"item":"pg-ears","response":"success"},{"item":"pg-escape","response":"success"},{"item":"pg-format","response":"success"},{"item":"pg-large-object","response":"success"},{"item":"pg-pool","response":"success"},{"item":"pg-query-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"pg-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pgwmodal","response":"success"},{"item":"phantom","response":"success"},{"item":"phantomcss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phantomjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phoenix","response":"success"},{"item":"phone","response":"success"},{"item":"phone-formatter","response":"success"},{"item":"phoneformat.js","response":"success"},{"item":"phonegap","response":"success"},{"item":"phonegap-facebook-plugin","response":"success"},{"item":"phonegap-nfc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/phonegap-nfc/index.d.ts(459,5): error TS2309: An export assignment cannot be used in a module with other exported elements.\n"},{"item":"phonegap-plugin-barcodescanner","response":"success"},{"item":"phonon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceExportDeclaration - it will convert to null"},{"item":"photonui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"photoswipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"php-serialize","response":"success"},{"item":"physijs","response":"success"},{"item":"pi-camera","response":"success"},{"item":"pi-spi","response":"success"},{"item":"pica","response":"success"},{"item":"pick-deep","response":"success"},{"item":"pick-weight","response":"success"},{"item":"pickadate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"picturefill","response":"success"},{"item":"pid-from-port","response":"success"},{"item":"pidusage","response":"success"},{"item":"pify","response":"success"},{"item":"pigpio","response":"success"},{"item":"pigpio-dht","response":"success"},{"item":"pikaday","response":"success"},{"item":"pikaday-time","response":"success"},{"item":"ping","response":"success"},{"item":"pinkyswear","response":"success"},{"item":"pino","response":"success"},{"item":"pino-http","response":"success"},{"item":"pino-multi-stream","response":"success"},{"item":"pino-std-serializers","response":"success"},{"item":"pinterest-sdk","response":"success"},{"item":"pinyin","response":"success"},{"item":"piwik-tracker","response":"success"},{"item":"pixelmatch","response":"success"},{"item":"pixl-xml","response":"success"},{"item":"pizzip","response":"success"},{"item":"pkcs7-padding","response":"success"},{"item":"pkgcloud","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pkijs","response":"success"},{"item":"places","response":"success"},{"item":"plaid-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"platform","response":"success"},{"item":"playerframework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"playmusic","response":"success"},{"item":"pleasejs","response":"success"},{"item":"plist","response":"success"},{"item":"plotly.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"plugapi","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plugin-error","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plupload","response":"success"},{"item":"pluralize","response":"success"},{"item":"plurals-cldr","response":"success"},{"item":"png.js","response":"success"},{"item":"pngjs","response":"success"},{"item":"pngjs2","response":"success"},{"item":"pngquant-bin","response":"success"},{"item":"pnpapi","response":"success"},{"item":"podcast","response":"success"},{"item":"podium","response":"success"},{"item":"poi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"point-in-polygon","response":"success"},{"item":"poker-evaluator","response":"success"},{"item":"pollyjs__adapter","response":"success"},{"item":"pollyjs__adapter-fetch","response":"success"},{"item":"pollyjs__adapter-node-http","response":"success"},{"item":"pollyjs__adapter-puppeteer","response":"success"},{"item":"pollyjs__adapter-xhr","response":"success"},{"item":"pollyjs__core","response":"success"},{"item":"pollyjs__node-server","response":"success"},{"item":"pollyjs__persister","response":"success"},{"item":"pollyjs__persister-fs","response":"success"},{"item":"pollyjs__persister-local-storage","response":"success"},{"item":"pollyjs__persister-rest","response":"success"},{"item":"pollyjs__utils","response":"success"},{"item":"polyfill-service","response":"success"},{"item":"polygon","response":"success"},{"item":"polygons-intersect","response":"success"},{"item":"polylabel","response":"success"},{"item":"polyline","response":"success"},{"item":"polymer","response":"success"},{"item":"polymer-ts","response":"success"},{"item":"popcorn","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'kind' of undefined\n"},{"item":"port-numbers","response":"success"},{"item":"portscanner","response":"success"},{"item":"postal","response":"success"},{"item":"postcss-calc","response":"success"},{"item":"postcss-custom-properties","response":"success"},{"item":"postcss-icss-values","response":"success"},{"item":"postcss-import","response":"success"},{"item":"postcss-load-config","response":"success"},{"item":"postcss-modules-extract-imports","response":"success"},{"item":"postcss-modules-local-by-default","response":"success"},{"item":"postcss-modules-resolve-imports","response":"success"},{"item":"postcss-modules-scope","response":"success"},{"item":"postcss-modules-values","response":"success"},{"item":"postcss-nested","response":"success"},{"item":"postcss-reporter","response":"success"},{"item":"postcss-url","response":"success"},{"item":"poster-image","response":"success"},{"item":"postlight__mercury-parser","response":"success"},{"item":"postman-collection","response":"success"},{"item":"postmate","response":"success"},{"item":"pouch-redux-middleware","response":"success"},{"item":"pouchdb","response":"success"},{"item":"pouchdb-adapter-cordova-sqlite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-fruitdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-http","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-idb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-leveldb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-localstorage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-memory","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-node-websql","response":"success"},{"item":"pouchdb-adapter-websql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-browser","response":"success"},{"item":"pouchdb-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-http","response":"success"},{"item":"pouchdb-live-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-mapreduce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-replication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-upsert","response":"success"},{"item":"power-assert","response":"success"},{"item":"power-assert-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"powerapps-component-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/powerapps-component-framework"},{"item":"powerbi-visuals-tools","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"preact-i18n","response":"success"},{"item":"precise","response":"success"},{"item":"precond","response":"success"},{"item":"preferred-pm","response":"success"},{"item":"prefixfree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"preloadjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prelude-ls","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier-package-json","response":"success"},{"item":"pretty","response":"success"},{"item":"pretty-hrtime","response":"success"},{"item":"pretty-time","response":"success"},{"item":"prettyjson","response":"success"},{"item":"preval.macro","response":"success"},{"item":"primus","response":"success"},{"item":"priorityqueuejs","response":"success"},{"item":"prismic-dom","response":"success"},{"item":"prismjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"private-ip","response":"success"},{"item":"probability-distributions","response":"success"},{"item":"procfs-stats","response":"success"},{"item":"proclaim","response":"success"},{"item":"progress","response":"success"},{"item":"progress-bar-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"progress-stream","response":"success"},{"item":"progressbar","response":"success"},{"item":"progressjs","response":"success"},{"item":"proj4","response":"success"},{"item":"proj4leaflet","response":"success"},{"item":"project-name","response":"success"},{"item":"project-oxford","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"prometheus-gc-stats","response":"success"},{"item":"promise-abortable","response":"success"},{"item":"promise-dag","response":"success"},{"item":"promise-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-ftp-common","response":"success"},{"item":"promise-hash","response":"success"},{"item":"promise-inflight","response":"success"},{"item":"promise-map-limit","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise.allsettled","response":"success"},{"item":"promise.prototype.finally","response":"success"},{"item":"promised-ldap","response":"success"},{"item":"promised-temp","response":"success"},{"item":"promisify-node","response":"success"},{"item":"promisify-supertest","response":"success"},{"item":"prompt-sync","response":"success"},{"item":"prompt-sync-history","response":"success"},{"item":"promptly","response":"success"},{"item":"prompts","response":"success"},{"item":"prop-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"proper-lockfile","response":"success"},{"item":"proper-url-join","response":"success"},{"item":"properties-reader","response":"success"},{"item":"prosemirror-collab","response":"success"},{"item":"prosemirror-commands","response":"success"},{"item":"prosemirror-dev-tools","response":"success"},{"item":"prosemirror-dropcursor","response":"success"},{"item":"prosemirror-gapcursor","response":"success"},{"item":"prosemirror-history","response":"success"},{"item":"prosemirror-inputrules","response":"success"},{"item":"prosemirror-keymap","response":"success"},{"item":"prosemirror-markdown","response":"success"},{"item":"prosemirror-menu","response":"success"},{"item":"prosemirror-model","response":"success"},{"item":"prosemirror-schema-basic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"prosemirror-schema-list","response":"success"},{"item":"prosemirror-state","response":"success"},{"item":"prosemirror-test-builder","response":"success"},{"item":"prosemirror-transform","response":"success"},{"item":"prosemirror-view","response":"success"},{"item":"protoc-plugin","response":"success"},{"item":"protocol-buffers-schema","response":"success"},{"item":"protocols","response":"success"},{"item":"proton-native","response":"success"},{"item":"protoo-server","response":"success"},{"item":"protractor-browser-logs","response":"success"},{"item":"protractor-helpers","response":"success"},{"item":"protractor-http-mock","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"provinces","response":"success"},{"item":"proxy-addr","response":"success"},{"item":"proxy-from-env","response":"success"},{"item":"proxy-lists","response":"success"},{"item":"proxy-verifier","response":"success"},{"item":"proxyquire","response":"success"},{"item":"ps-tree","response":"success"},{"item":"pseudo-audio-param","response":"success"},{"item":"psl","response":"success"},{"item":"ptomasroos__react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"pty.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pubnub","response":"success"},{"item":"pubsub-js","response":"success"},{"item":"pug","response":"success"},{"item":"pull-stream","response":"success"},{"item":"pulltorefreshjs","response":"success"},{"item":"pulsar-client","response":"success"},{"item":"pump","response":"success"},{"item":"pumpify","response":"success"},{"item":"punycode","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"puppeteer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"puppeteer-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"purdy","response":"success"},{"item":"pure-render-decorator","response":"success"},{"item":"purifycss-webpack","response":"success"},{"item":"purl","response":"success"},{"item":"pusher-js","response":"success"},{"item":"pusher__chatkit-client","response":"success"},{"item":"pvutils","response":"success"},{"item":"python-shell","response":"success"},{"item":"python-struct","response":"success"},{"item":"q","response":"success"},{"item":"q-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"q-retry","response":"success"},{"item":"qhistory","response":"success"},{"item":"qiniu-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik-engineapi","response":"success"},{"item":"qlik-visualizationextensions","response":"success"},{"item":"qr-image","response":"success"},{"item":"qrcode","response":"success"},{"item":"qrcode-svg","response":"success"},{"item":"qrcode.react","response":"success"},{"item":"qs","response":"success"},{"item":"qs-middleware","response":"success"},{"item":"qtip2","response":"success"},{"item":"querystringify","response":"success"},{"item":"quick-hash","response":"success"},{"item":"quill","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\n\n../DefinitelyTyped/types/quill/node_modules/quill-delta/dist/Delta.d.ts(1,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/quill/node_modules/fast-diff/diff\"' can only be default-imported using the 'esModuleInterop' flag\n"},{"item":"quixote","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"quoted-printable","response":"success"},{"item":"qwest","response":"success"},{"item":"r-script","response":"success"},{"item":"rabbit.js","response":"success"},{"item":"rabbitmq-schema","response":"success"},{"item":"radium","response":"success"},{"item":"radius","response":"success"},{"item":"radix64","response":"success"},{"item":"raf","response":"success"},{"item":"raf-schd","response":"success"},{"item":"ramda","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"random","response":"success"},{"item":"random-boolean","response":"success"},{"item":"random-bytes","response":"success"},{"item":"random-normal","response":"success"},{"item":"random-number","response":"success"},{"item":"random-seed","response":"success"},{"item":"random-string","response":"success"},{"item":"random-useragent","response":"success"},{"item":"randombytes","response":"success"},{"item":"randomcolor","response":"success"},{"item":"randomstring","response":"success"},{"item":"range-parser","response":"success"},{"item":"range_check","response":"success"},{"item":"rangy","response":"success"},{"item":"rangyinputs","response":"success"},{"item":"ranjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raphael","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"rappid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rascal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rasha","response":"success"},{"item":"raspi","response":"success"},{"item":"raspi-board","response":"success"},{"item":"raspi-gpio","response":"success"},{"item":"raspi-i2c","response":"success"},{"item":"raspi-led","response":"success"},{"item":"raspi-onewire","response":"success"},{"item":"raspi-peripheral","response":"success"},{"item":"raspi-pwm","response":"success"},{"item":"raspi-serial","response":"success"},{"item":"raspi-soft-pwm","response":"success"},{"item":"rate-limit-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"ratelimiter","response":"success"},{"item":"raty","response":"success"},{"item":"raven","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raven-for-redux","response":"success"},{"item":"rax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"raygun","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raygun4js","response":"success"},{"item":"rbac-a","response":"success"},{"item":"rbush","response":"success"},{"item":"rc","response":"success"},{"item":"rc-select","response":"success"},{"item":"rc-slider","response":"success"},{"item":"rc-steps","response":"success"},{"item":"rc-switch","response":"success"},{"item":"rc-time-picker","response":"success"},{"item":"rc-tooltip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rc-tree","response":"success"},{"item":"rcloader","response":"success"},{"item":"rdf-data-model","response":"success"},{"item":"rdf-dataset-ext","response":"success"},{"item":"rdf-dataset-indexed","response":"success"},{"item":"rdf-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"rdf-js","response":"success"},{"item":"rdf-transform-triple-to-quad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__dataset","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'ids' of undefined\n"},{"item":"rdfjs__express-handler","response":"success"},{"item":"rdfjs__fetch","response":"success"},{"item":"rdfjs__fetch-lite","response":"success"},{"item":"rdfjs__formats-common","response":"success"},{"item":"rdfjs__namespace","response":"success"},{"item":"rdfjs__parser-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__parser-n3","response":"success"},{"item":"rdfjs__serializer-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__serializer-jsonld-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__sink-map","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__term-set","response":"success"},{"item":"rdfjs__to-ntriples","response":"success"},{"item":"rdflib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"re-base","response":"success"},{"item":"reach__alert","response":"success"},{"item":"reach__alert-dialog","response":"success"},{"item":"reach__auto-id","response":"success"},{"item":"reach__combobox","response":"success"},{"item":"reach__dialog","response":"success"},{"item":"reach__menu-button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reach__rect","response":"success"},{"item":"reach__router","response":"success"},{"item":"reach__skip-nav","response":"success"},{"item":"reach__tabs","response":"success"},{"item":"reach__tooltip","response":"success"},{"item":"reach__utils","response":"success"},{"item":"reach__visually-hidden","response":"success"},{"item":"reach__window-size","response":"success"},{"item":"react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-adal","response":"success"},{"item":"react-adaptive-hooks","response":"success"},{"item":"react-add-to-calendar","response":"success"},{"item":"react-addons-create-fragment","response":"success"},{"item":"react-addons-css-transition-group","response":"success"},{"item":"react-addons-linked-state-mixin","response":"success"},{"item":"react-addons-perf","response":"success"},{"item":"react-addons-pure-render-mixin","response":"success"},{"item":"react-addons-shallow-compare","response":"success"},{"item":"react-addons-test-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-addons-transition-group","response":"success"},{"item":"react-addons-update","response":"success"},{"item":"react-albus","response":"success"},{"item":"react-alert","response":"success"},{"item":"react-amplitude","response":"success"},{"item":"react-animate-on-scroll","response":"success"},{"item":"react-app","response":"success"},{"item":"react-aria-live","response":"success"},{"item":"react-aria-menubutton","response":"success"},{"item":"react-aria-modal","response":"success"},{"item":"react-audio-player","response":"success"},{"item":"react-autocomplete","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"react-autosuggest","response":"success"},{"item":"react-avatar-editor","response":"success"},{"item":"react-axe","response":"success"},{"item":"react-beautiful-dnd","response":"success"},{"item":"react-beforeunload","response":"success"},{"item":"react-better-password","response":"success"},{"item":"react-big-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-big-scheduler","response":"success"},{"item":"react-blessed","response":"success"},{"item":"react-body-classname","response":"success"},{"item":"react-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-bootstrap-date-picker","response":"success"},{"item":"react-bootstrap-daterangepicker","response":"success"},{"item":"react-bootstrap-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-bootstrap-table-next","response":"success"},{"item":"react-bootstrap-table2-filter","response":"success"},{"item":"react-bootstrap-table2-paginator","response":"success"},{"item":"react-bootstrap-table2-toolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-bootstrap-typeahead","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-breadcrumbs","response":"success"},{"item":"react-breadcrumbs-dynamic","response":"success"},{"item":"react-broadcast","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-burger-menu","response":"success"},{"item":"react-bytesize-icons","response":"success"},{"item":"react-cache","response":"success"},{"item":"react-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-calendar-heatmap","response":"success"},{"item":"react-calendar-timeline","response":"success"},{"item":"react-canvas-draw","response":"success"},{"item":"react-cartographer","response":"success"},{"item":"react-chat-widget","response":"success"},{"item":"react-click-outside","response":"success"},{"item":"react-click-outside-hook","response":"success"},{"item":"react-close-on-escape","response":"success"},{"item":"react-codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-coinhive","response":"success"},{"item":"react-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-confirm","response":"success"},{"item":"react-cookies","response":"success"},{"item":"react-copy-to-clipboard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-copy-write","response":"success"},{"item":"react-count-to","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-countdown-circle-timer","response":"success"},{"item":"react-countup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-credit-cards","response":"success"},{"item":"react-cropper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-css-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-css-modules","response":"success"},{"item":"react-css-transition-replace","response":"success"},{"item":"react-csv","response":"success"},{"item":"react-currency-formatter","response":"success"},{"item":"react-custom-scrollbars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-d3-graph","response":"success"},{"item":"react-data-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"react-datagrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-date-range","response":"success"},{"item":"react-datepicker","response":"success"},{"item":"react-daterange-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"react-dates","response":"success"},{"item":"react-dev-utils","response":"success"},{"item":"react-devtools","response":"success"},{"item":"react-div-100vh","response":"success"},{"item":"react-dnd-multi-backend","response":"success"},{"item":"react-dnd-scrollzone","response":"success"},{"item":"react-document-meta","response":"success"},{"item":"react-document-title","response":"success"},{"item":"react-dom","response":"success"},{"item":"react-dom-factories","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-draft-wysiwyg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-dragtastic","response":"success"},{"item":"react-dynamic-number","response":"success"},{"item":"react-easy-chart","response":"success"},{"item":"react-easy-crop","response":"success"},{"item":"react-editext","response":"success"},{"item":"react-elemental","response":"success"},{"item":"react-email-editor","response":"success"},{"item":"react-event-listener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-fa","response":"success"},{"item":"react-facebook-login","response":"success"},{"item":"react-facebook-login-component","response":"success"},{"item":"react-fade-in","response":"success"},{"item":"react-faux-dom","response":"success"},{"item":"react-file-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-file-reader-input","response":"success"},{"item":"react-filepond","response":"success"},{"item":"react-final-form-listeners","response":"success"},{"item":"react-flag-icon-css","response":"success"},{"item":"react-flags-select","response":"success"},{"item":"react-flatpickr","response":"success"},{"item":"react-flex","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-flexr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-fontawesome","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-form","response":"success"},{"item":"react-foundation","response":"success"},{"item":"react-frame-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-frontload","response":"success"},{"item":"react-gamepad","response":"success"},{"item":"react-gateway","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-geosuggest","response":"success"},{"item":"react-github-button","response":"success"},{"item":"react-global-configuration","response":"success"},{"item":"react-google-login-component","response":"success"},{"item":"react-google-maps-loader","response":"success"},{"item":"react-google-places-suggest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-google-recaptcha","response":"success"},{"item":"react-gravatar","response":"success"},{"item":"react-grid-layout","response":"success"},{"item":"react-gtm-module","response":"success"},{"item":"react-hamburger-menu","response":"success"},{"item":"react-hammerjs","response":"success"},{"item":"react-headroom","response":"success"},{"item":"react-helmet","response":"success"},{"item":"react-helmet-with-visor","response":"success"},{"item":"react-highcharts","response":"success"},{"item":"react-highlight","response":"success"},{"item":"react-highlight-words","response":"success"},{"item":"react-highlight.js","response":"success"},{"item":"react-highlighter","response":"success"},{"item":"react-holder","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"react-hook-mousetrap","response":"success"},{"item":"react-hooks-helper","response":"success"},{"item":"react-howler","response":"success"},{"item":"react-html-parser","response":"success"},{"item":"react-hyperscript","response":"success"},{"item":"react-icofont","response":"success"},{"item":"react-icon-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-image-crop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"react-image-fallback","response":"success"},{"item":"react-image-gallery","response":"success"},{"item":"react-image-magnify","response":"success"},{"item":"react-imageloader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-images","response":"success"},{"item":"react-imgix","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-imgpro","response":"success"},{"item":"react-immutable-proptypes","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-infinite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-calendar","response":"success"},{"item":"react-infinite-scroll-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-input-autosize","response":"success"},{"item":"react-input-calendar","response":"success"},{"item":"react-input-mask","response":"success"},{"item":"react-inspector","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-instantsearch","response":"success"},{"item":"react-instantsearch-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-interactive","response":"success"},{"item":"react-intl-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-is","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-is-deprecated","response":"success"},{"item":"react-js-pagination","response":"success"},{"item":"react-json","response":"success"},{"item":"react-json-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-jsonschema-form","response":"success"},{"item":"react-kawaii","response":"success"},{"item":"react-lazy-load-image-component","response":"success"},{"item":"react-lazyload","response":"success"},{"item":"react-lazylog","response":"success"},{"item":"react-leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-leaflet-markercluster","response":"success"},{"item":"react-leaflet-sidebarv2","response":"success"},{"item":"react-lifecycle-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-lifecycles-compat","response":"success"},{"item":"react-linkify","response":"success"},{"item":"react-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-loadable","response":"success"},{"item":"react-loadable-visibility","response":"success"},{"item":"react-loader","response":"success"},{"item":"react-loader-spinner","response":"success"},{"item":"react-lottie","response":"success"},{"item":"react-mailchimp-subscribe","response":"success"},{"item":"react-map-gl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-maskedinput","response":"success"},{"item":"react-material-ui-form-validator","response":"success"},{"item":"react-mathquill","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-mce","response":"success"},{"item":"react-mdl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-measure","response":"success"},{"item":"react-medium-image-zoom","response":"success"},{"item":"react-mentions","response":"success"},{"item":"react-messenger-checkbox","response":"success"},{"item":"react-mic","response":"success"},{"item":"react-mixin","response":"success"},{"item":"react-modal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"react-motion","response":"success"},{"item":"react-motion-loop","response":"success"},{"item":"react-motion-slider","response":"success"},{"item":"react-motion-ui-pack","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-actionsheet","response":"success"},{"item":"react-native-android-taskdescription","response":"success"},{"item":"react-native-app-intro-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-app-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-appsflyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-audio","response":"success"},{"item":"react-native-auth0","response":"success"},{"item":"react-native-autocomplete-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-awesome-card-io","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-background-downloader","response":"success"},{"item":"react-native-background-timer","response":"success"},{"item":"react-native-bluetooth-serial","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendar-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-canvas","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-charts-wrapper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-check-box","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-communications","response":"success"},{"item":"react-native-community__cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-native-custom-tabs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-datawedge-intents","response":"success"},{"item":"react-native-datepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialogflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-doc-viewer","response":"success"},{"item":"react-native-document-picker","response":"success"},{"item":"react-native-dotenv","response":"success"},{"item":"react-native-draggable-flatlist","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer-layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-easy-upgrade","response":"success"},{"item":"react-native-elevated-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fbsdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fetch-blob","response":"success"},{"item":"react-native-flip-card","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-google-signin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-honeywell-scanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-htmlview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-huawei-protected-apps","response":"success"},{"item":"react-native-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-incall-manager","response":"success"},{"item":"react-native-indicators","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-input-spinner","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-joi","response":"success"},{"item":"react-native-keep-awake","response":"success"},{"item":"react-native-keyboard-spacer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-loading-spinner-overlay","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-maps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-design-searchbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-dropdown","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-textfield","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mixpanel","response":"success"},{"item":"react-native-modal-dropdown","response":"success"},{"item":"react-native-modal-filter-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-modalbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-navbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-orientation","response":"success"},{"item":"react-native-pdf-lib","response":"success"},{"item":"react-native-percentage-circle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-phone-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-photo-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-platform-touchable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-popup-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-privacy-snapshot","response":"success"},{"item":"react-native-push-notification","response":"success"},{"item":"react-native-qrcode","response":"success"},{"item":"react-native-read-more-text","response":"success"},{"item":"react-native-referrer","response":"success"},{"item":"react-native-restart","response":"success"},{"item":"react-native-rss-parser","response":"success"},{"item":"react-native-safari-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scaled-image","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scrollable-tab-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"react-native-sensor-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-settings-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share-extension","response":"success"},{"item":"react-native-share-menu","response":"success"},{"item":"react-native-signature-capture","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snackbar-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snap-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sqlite-storage","response":"success"},{"item":"react-native-star-rating","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-status-bar-height","response":"success"},{"item":"react-native-svg-charts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-svg-uri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-swiper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-native-tab-navigator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-text-input-mask","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-toast-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-touch-id","response":"success"},{"item":"react-native-uuid","response":"success"},{"item":"react-native-uuid-generator","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-version-check","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-version-number","response":"success"},{"item":"react-native-video","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-video-player","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-view-pdf","response":"success"},{"item":"react-native-webrtc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-zeroconf","response":"success"},{"item":"react-native-zss-rich-text-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-no-ssr","response":"success"},{"item":"react-notification-system","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notification-system-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notify-toast","response":"success"},{"item":"react-numeric-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"react-offcanvas","response":"success"},{"item":"react-onclickoutside","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-onsenui","response":"success"},{"item":"react-outside-click-handler","response":"success"},{"item":"react-overlays","response":"success"},{"item":"react-paginate","response":"success"},{"item":"react-panelgroup","response":"success"},{"item":"react-pdf","response":"success"},{"item":"react-phone-number-input","response":"success"},{"item":"react-photoswipe","response":"success"},{"item":"react-places-autocomplete","response":"success"},{"item":"react-plaid-link","response":"success"},{"item":"react-plotly.js","response":"success"},{"item":"react-plyr","response":"success"},{"item":"react-pointable","response":"success"},{"item":"react-popover","response":"success"},{"item":"react-portal","response":"success"},{"item":"react-primitives","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-props-decorators","response":"success"},{"item":"react-qr-reader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-query","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-radio-group","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-rangeslider","response":"success"},{"item":"react-recaptcha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-recaptcha-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-reconciler","response":"success"},{"item":"react-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-redux-epic","response":"success"},{"item":"react-redux-i18n","response":"success"},{"item":"react-redux-toastr","response":"success"},{"item":"react-relay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-request","response":"success"},{"item":"react-resizable","response":"success"},{"item":"react-resize-detector","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"react-resolver","response":"success"},{"item":"react-responsive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-bootstrap","response":"success"},{"item":"react-router-config","response":"success"},{"item":"react-router-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-guard","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-hash-link","response":"success"},{"item":"react-router-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-navigation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-navigation-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-param-link","response":"success"},{"item":"react-router-redux","response":"success"},{"item":"react-router-tabs","response":"success"},{"item":"react-rte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-s-alert","response":"success"},{"item":"react-scroll","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-scroll-into-view-if-needed","response":"success"},{"item":"react-scroll-rotate","response":"success"},{"item":"react-scrollable-anchor","response":"success"},{"item":"react-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"react-scrollbar-size","response":"success"},{"item":"react-scrollspy","response":"success"},{"item":"react-select","response":"success"},{"item":"react-shadow-dom-retarget-events","response":"success"},{"item":"react-share","response":"success"},{"item":"react-show-more","response":"success"},{"item":"react-side-effect","response":"success"},{"item":"react-sidebar","response":"success"},{"item":"react-signature-canvas","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-simple-maps","response":"success"},{"item":"react-sizes","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-sketchapp","response":"success"},{"item":"react-slick","response":"success"},{"item":"react-slider","response":"success"},{"item":"react-smooth-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"react-sortable-tree","response":"success"},{"item":"react-sortable-tree-theme-file-explorer","response":"success"},{"item":"react-sound","response":"success"},{"item":"react-sparklines","response":"success"},{"item":"react-spinkit","response":"success"},{"item":"react-spinner","response":"success"},{"item":"react-splitter-layout","response":"success"},{"item":"react-star-rating-component","response":"success"},{"item":"react-stars","response":"success"},{"item":"react-sticky","response":"success"},{"item":"react-sticky-el","response":"success"},{"item":"react-stickynode","response":"success"},{"item":"react-stripe-elements","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-svg-inline","response":"success"},{"item":"react-svg-pan-zoom","response":"success"},{"item":"react-swf","response":"success"},{"item":"react-swipe","response":"success"},{"item":"react-swipeable-views","response":"success"},{"item":"react-swipeable-views-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-syntax-highlighter","response":"success"},{"item":"react-table","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-table-filter","response":"success"},{"item":"react-tabs","response":"success"},{"item":"react-tabs-redux","response":"success"},{"item":"react-tag-autocomplete","response":"success"},{"item":"react-tag-input","response":"success"},{"item":"react-tagcloud","response":"success"},{"item":"react-tagsinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"react-tap-event-plugin","response":"success"},{"item":"react-test-renderer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-text-mask","response":"success"},{"item":"react-text-truncate","response":"success"},{"item":"react-textarea-autosize","response":"success"},{"item":"react-timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-timeout","response":"success"},{"item":"react-toast-notifications","response":"success"},{"item":"react-toastr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-toggle","response":"success"},{"item":"react-tooltip","response":"success"},{"item":"react-touch","response":"success"},{"item":"react-tracking","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-transition-group","response":"success"},{"item":"react-treeview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-truncate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"react-twitter-auth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-typing-animation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-typist","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-ultimate-pagination","response":"success"},{"item":"react-user-tour","response":"success"},{"item":"react-vega","response":"success"},{"item":"react-vertical-timeline-component","response":"success"},{"item":"react-virtual-keyboard","response":"success"},{"item":"react-virtualized","response":"success"},{"item":"react-virtualized-auto-sizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-virtualized-select","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-visibility-sensor","response":"success"},{"item":"react-wait","response":"success"},{"item":"react-weui","response":"success"},{"item":"react-widgets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-widgets-moment","response":"success"},{"item":"react-window","response":"success"},{"item":"react-window-infinite-loader","response":"success"},{"item":"react-window-size","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-with-styles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-wow","response":"success"},{"item":"react-youtube","response":"success"},{"item":"react-youtube-embed","response":"success"},{"item":"reactable","response":"success"},{"item":"reactabular-dnd","response":"success"},{"item":"reactabular-sticky","response":"success"},{"item":"reactabular-table","response":"success"},{"item":"reactcss","response":"success"},{"item":"reactour","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reactstrap","response":"success"},{"item":"read","response":"success"},{"item":"read-package-tree","response":"success"},{"item":"readable-stream","response":"success"},{"item":"readdir-stream","response":"success"},{"item":"readline-sync","response":"success"},{"item":"readline-transform","response":"success"},{"item":"readmore-js","response":"success"},{"item":"reapop","response":"success"},{"item":"rebass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebind-host","response":"success"},{"item":"recaptcha2","response":"success"},{"item":"recase","response":"success"},{"item":"recharts","response":"success"},{"item":"recharts-scale","response":"success"},{"item":"rechoir","response":"success"},{"item":"recluster","response":"success"},{"item":"recompose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"reconnect-core","response":"success"},{"item":"reconnectingwebsocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"recorder-js","response":"success"},{"item":"recurly__recurly-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"recursive-readdir","response":"success"},{"item":"redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-errors","response":"success"},{"item":"redis-info","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"redis-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-rate-limiter","response":"success"},{"item":"redis-scripto","response":"success"},{"item":"redlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"redux-action","response":"success"},{"item":"redux-action-utils","response":"success"},{"item":"redux-actions","response":"success"},{"item":"redux-api-middleware","response":"success"},{"item":"redux-async-queue","response":"success"},{"item":"redux-auth-wrapper","response":"success"},{"item":"redux-batched-subscribe","response":"success"},{"item":"redux-cablecar","response":"success"},{"item":"redux-debounced","response":"success"},{"item":"redux-devtools","response":"success"},{"item":"redux-devtools-dock-monitor","response":"success"},{"item":"redux-devtools-log-monitor","response":"success"},{"item":"redux-doghouse","response":"success"},{"item":"redux-duck","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-first-router","response":"success"},{"item":"redux-first-router-link","response":"success"},{"item":"redux-first-router-restore-scroll","response":"success"},{"item":"redux-first-routing","response":"success"},{"item":"redux-form","response":"success"},{"item":"redux-immutable","response":"success"},{"item":"redux-immutable-state-invariant","response":"success"},{"item":"redux-infinite-scroll","response":"success"},{"item":"redux-injectable-store","response":"success"},{"item":"redux-localstorage","response":"success"},{"item":"redux-localstorage-debounce","response":"success"},{"item":"redux-localstorage-filter","response":"success"},{"item":"redux-logger","response":"success"},{"item":"redux-mock-store","response":"success"},{"item":"redux-optimistic-ui","response":"success"},{"item":"redux-orm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"redux-pack","response":"success"},{"item":"redux-persist-transform-encrypt","response":"success"},{"item":"redux-persist-transform-filter","response":"success"},{"item":"redux-promise","response":"success"},{"item":"redux-promise-listener","response":"success"},{"item":"redux-recycle","response":"success"},{"item":"redux-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"redux-saga-routines","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-saga-tester","response":"success"},{"item":"redux-seamless-immutable","response":"success"},{"item":"redux-sentry-middleware","response":"success"},{"item":"redux-shortcuts","response":"success"},{"item":"redux-socket.io","response":"success"},{"item":"redux-state-sync","response":"success"},{"item":"redux-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"redux-storage-engine-jsurl","response":"success"},{"item":"redux-storage-engine-localstorage","response":"success"},{"item":"redux-test-utils","response":"success"},{"item":"redux-testkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"redux-ui","response":"success"},{"item":"ref","response":"success"},{"item":"ref-array","response":"success"},{"item":"ref-array-di","response":"success"},{"item":"ref-napi","response":"success"},{"item":"ref-struct","response":"success"},{"item":"ref-struct-di","response":"success"},{"item":"ref-union","response":"success"},{"item":"ref-union-di","response":"success"},{"item":"reflexbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"reflux","response":"success"},{"item":"refractor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"refresh-fetch","response":"success"},{"item":"registry-auth-token","response":"success"},{"item":"regression","response":"success"},{"item":"rehype-react","response":"success"},{"item":"relateurl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"relaxed-json","response":"success"},{"item":"relay-compiler","response":"success"},{"item":"relay-config","response":"success"},{"item":"relay-runtime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"relay-test-utils","response":"success"},{"item":"rellax","response":"success"},{"item":"remarkable","response":"success"},{"item":"remote-origin-url","response":"success"},{"item":"remote-redux-devtools","response":"success"},{"item":"remotedev-serialize","response":"success"},{"item":"remove-markdown","response":"success"},{"item":"rename","response":"success"},{"item":"repeat-element","response":"success"},{"item":"repeat-string","response":"success"},{"item":"repeating","response":"success"},{"item":"replace-ext","response":"success"},{"item":"replacestream","response":"success"},{"item":"request","response":"success"},{"item":"request-as-curl","response":"success"},{"item":"request-debug","response":"success"},{"item":"request-ip","response":"success"},{"item":"request-promise","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"request-promise-native","response":"success"},{"item":"request-stats","response":"success"},{"item":"requestidlecallback","response":"success"},{"item":"requestretry","response":"success"},{"item":"require-dir","response":"success"},{"item":"require-directory","response":"success"},{"item":"require-from-string","response":"success"},{"item":"require-relative","response":"success"},{"item":"requireindex","response":"success"},{"item":"requirejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'Require', but here has type 'NodeRequire'.\n../DefinitelyTyped/types/node/module.d.ts(57,14): error TS2300: Duplicate identifier 'Module'.\n../DefinitelyTyped/types/requirejs/index.d.ts(38,11): error TS2300: Duplicate identifier 'Module'.\n"},{"item":"requirejs-domready","response":"success"},{"item":"requires-port","response":"success"},{"item":"resemblejs","response":"success"},{"item":"reserved-words","response":"success"},{"item":"reservoir","response":"success"},{"item":"resize-img","response":"success"},{"item":"resize-observer-browser","response":"success"},{"item":"resolve","response":"success"},{"item":"resolve-options","response":"success"},{"item":"resolve-protobuf-schema","response":"success"},{"item":"resourcejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"response-time","response":"success"},{"item":"responselike","response":"success"},{"item":"rest","response":"success"},{"item":"restangular","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"restful.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"restify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restify-cookies","response":"success"},{"item":"restify-cors-middleware","response":"success"},{"item":"restify-errors","response":"success"},{"item":"restify-plugins","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restler","response":"success"},{"item":"restling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"rethinkdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"retinajs","response":"success"},{"item":"retry","response":"success"},{"item":"retry-as-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"revalidate","response":"success"},{"item":"revalidator","response":"success"},{"item":"reveal","response":"success"},{"item":"rewire","response":"success"},{"item":"rfc2047","response":"success"},{"item":"rfdc","response":"success"},{"item":"rgrove__parse-xml","response":"success"},{"item":"rheostat","response":"success"},{"item":"rickshaw","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/rickshaw"},{"item":"right-align","response":"success"},{"item":"rijndael-js","response":"success"},{"item":"rimraf","response":"success"},{"item":"ringbufferjs","response":"success"},{"item":"riot-api-nodejs","response":"success"},{"item":"riot-games-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"riot-route","response":"success"},{"item":"riotcontrol","response":"success"},{"item":"riotjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ripemd160","response":"success"},{"item":"rison","response":"success"},{"item":"rivets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rmc-drawer","response":"success"},{"item":"rmfr","response":"success"},{"item":"rn-app-upgrade","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"rn-fetch-blob","response":"success"},{"item":"roarr","response":"success"},{"item":"robust-point-in-polygon","response":"success"},{"item":"rocksdb","response":"success"},{"item":"rockset","response":"success"},{"item":"roll","response":"success"},{"item":"rolling-rate-limiter","response":"success"},{"item":"rollup-plugin-buble","response":"success"},{"item":"rollup-plugin-json","response":"success"},{"item":"rollup-plugin-node-builtins","response":"success"},{"item":"rollup-plugin-node-globals","response":"success"},{"item":"rollup-plugin-peer-deps-external","response":"success"},{"item":"rollup-plugin-postcss","response":"success"},{"item":"rollup-plugin-progress","response":"success"},{"item":"rollup-plugin-size-snapshot","response":"success"},{"item":"rollup-plugin-sourcemaps","response":"success"},{"item":"rollup-plugin-url","response":"success"},{"item":"rollup-plugin-visualizer","response":"success"},{"item":"rollup__plugin-virtual","response":"success"},{"item":"roman-numerals","response":"success"},{"item":"ronomon__crypto-async","response":"success"},{"item":"rosie","response":"success"},{"item":"roslib","response":"success"},{"item":"route-parser","response":"success"},{"item":"routie","response":"success"},{"item":"rox-browser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-react-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"royalslider","response":"success"},{"item":"rpio","response":"success"},{"item":"rrc","response":"success"},{"item":"rsmq-worker","response":"success"},{"item":"rsocket-core","response":"success"},{"item":"rsocket-flowable","response":"success"},{"item":"rsocket-tcp-client","response":"success"},{"item":"rsocket-tcp-server","response":"success"},{"item":"rsocket-types","response":"success"},{"item":"rsocket-websocket-client","response":"success"},{"item":"rsocket-websocket-server","response":"success"},{"item":"rss","response":"success"},{"item":"rsvp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertyDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null"},{"item":"rsync","response":"success"},{"item":"rtl-detect","response":"success"},{"item":"rtlcss","response":"success"},{"item":"rtp-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rtree","response":"success"},{"item":"run-parallel","response":"success"},{"item":"run-parallel-limit","response":"success"},{"item":"run-sequence","response":"success"},{"item":"runes","response":"success"},{"item":"rwlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"rx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-core","response":"success"},{"item":"rx-core-binding","response":"success"},{"item":"rx-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n"},{"item":"rx-lite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-aggregates","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-backpressure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-coincidence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-experimental","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-joinpatterns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-virtualtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-node","response":"success"},{"item":"rx.wamp","response":"success"},{"item":"s3-download-stream","response":"success"},{"item":"s3-upload-stream","response":"success"},{"item":"s3-uploader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"s3rver","response":"success"},{"item":"sade","response":"success"},{"item":"safari-extension","response":"success"},{"item":"safari-extension-content","response":"success"},{"item":"safe-compare","response":"success"},{"item":"safe-json-stringify","response":"success"},{"item":"safe-regex","response":"success"},{"item":"safe-timers","response":"success"},{"item":"safer-buffer","response":"success"},{"item":"sails.io.js","response":"success"},{"item":"sailthru-client","response":"success"},{"item":"saml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"saml2-js","response":"success"},{"item":"saml20","response":"success"},{"item":"samlp","response":"success"},{"item":"sammy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sanctuary","response":"success"},{"item":"sandboxed-module","response":"success"},{"item":"sane","response":"success"},{"item":"sane-email-validation","response":"success"},{"item":"sanitize-html","response":"success"},{"item":"sanitizer","response":"success"},{"item":"sap__xsenv","response":"success"},{"item":"sarif","response":"success"},{"item":"sasl-anonymous","response":"success"},{"item":"sasl-digest-md5","response":"success"},{"item":"sasl-external","response":"success"},{"item":"sasl-plain","response":"success"},{"item":"sasl-scram-sha-1","response":"success"},{"item":"saslmechanisms","response":"success"},{"item":"saslprep","response":"success"},{"item":"sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sass-graph","response":"success"},{"item":"sat","response":"success"},{"item":"satnav","response":"success"},{"item":"save-csv","response":"success"},{"item":"sawtooth-sdk","response":"success"},{"item":"sax","response":"success"},{"item":"sax-stream","response":"success"},{"item":"saywhen","response":"success"},{"item":"sbd","response":"success"},{"item":"sc-auth","response":"success"},{"item":"sc-broker","response":"success"},{"item":"sc-broker-cluster","response":"success"},{"item":"sc-channel","response":"success"},{"item":"sc-errors","response":"success"},{"item":"sc-framework-health-check","response":"success"},{"item":"sc-hot-reboot","response":"success"},{"item":"scalike","response":"success"},{"item":"scc-broker-client","response":"success"},{"item":"schedule","response":"success"},{"item":"scheduler","response":"success"},{"item":"schema-registry","response":"success"},{"item":"schwifty","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"scoped-http-client","response":"success"},{"item":"scrambo","response":"success"},{"item":"screeps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"screeps-profiler","response":"success"},{"item":"script-ext-html-webpack-plugin","response":"success"},{"item":"scriptable-ios","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scriptjs","response":"success"},{"item":"scroll","response":"success"},{"item":"scroll-into-view","response":"success"},{"item":"scroll-to-element","response":"success"},{"item":"scrollbooster","response":"success"},{"item":"scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scrollparent","response":"success"},{"item":"scrollreveal","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"secure-json-parse","response":"success"},{"item":"secure-password","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"secure-random-password","response":"success"},{"item":"seed-random","response":"success"},{"item":"seededshuffle","response":"success"},{"item":"seedrandom","response":"success"},{"item":"seen","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"segment-analytics","response":"success"},{"item":"select2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"selectables","response":"success"},{"item":"selectize","response":"success"},{"item":"selenium-standalone","response":"success"},{"item":"selenium-webdriver","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"semantic-release","response":"success"},{"item":"semantic-ui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/semantic-ui"},{"item":"semantic-ui-accordion","response":"success"},{"item":"semantic-ui-api","response":"success"},{"item":"semantic-ui-checkbox","response":"success"},{"item":"semantic-ui-dimmer","response":"success"},{"item":"semantic-ui-dropdown","response":"success"},{"item":"semantic-ui-embed","response":"success"},{"item":"semantic-ui-form","response":"success"},{"item":"semantic-ui-modal","response":"success"},{"item":"semantic-ui-nag","response":"success"},{"item":"semantic-ui-popup","response":"success"},{"item":"semantic-ui-progress","response":"success"},{"item":"semantic-ui-rating","response":"success"},{"item":"semantic-ui-search","response":"success"},{"item":"semantic-ui-shape","response":"success"},{"item":"semantic-ui-sidebar","response":"success"},{"item":"semantic-ui-site","response":"success"},{"item":"semantic-ui-sticky","response":"success"},{"item":"semantic-ui-tab","response":"success"},{"item":"semantic-ui-transition","response":"success"},{"item":"semantic-ui-visibility","response":"success"},{"item":"semaphore","response":"success"},{"item":"semver","response":"success"},{"item":"semver-compare","response":"success"},{"item":"semver-sort","response":"success"},{"item":"semver-stable","response":"success"},{"item":"semver-utils","response":"success"},{"item":"sencha_touch","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"send","response":"success"},{"item":"sendmail","response":"success"},{"item":"seneca","response":"success"},{"item":"sentry__webpack-plugin","response":"success"},{"item":"sequelize","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sequelize-cursor-pagination","response":"success"},{"item":"sequelize-fixtures","response":"success"},{"item":"sequencify","response":"success"},{"item":"sequester","response":"success"},{"item":"serialize-javascript","response":"success"},{"item":"serialport","response":"success"},{"item":"serve-favicon","response":"success"},{"item":"serve-handler","response":"success"},{"item":"serve-index","response":"success"},{"item":"serve-static","response":"success"},{"item":"server","response":"success"},{"item":"server-destroy","response":"success"},{"item":"serverless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"serverless-jest-plugin","response":"success"},{"item":"service-worker-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(15,32): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(26,18): error TS2304: Cannot find name 'Client'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(44,34): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(47,50): error TS2304: Cannot find name 'PushEvent'.\n"},{"item":"servicenow","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow/index.d.ts(71,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"servicenow-london","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/servicenow-london\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow-london/Workflow.d.ts(1,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"serviceworker-webpack-plugin","response":"success"},{"item":"session-file-store","response":"success"},{"item":"set-cookie-parser","response":"success"},{"item":"set-interval-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"set-link","response":"success"},{"item":"set-value","response":"success"},{"item":"setasap","response":"success"},{"item":"setimmediate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"settings","response":"success"},{"item":"setup-polly-jest","response":"success"},{"item":"sha","response":"success"},{"item":"sha.js","response":"success"},{"item":"sha1","response":"success"},{"item":"sha256","response":"success"},{"item":"shallow-equals","response":"success"},{"item":"shallowequal","response":"success"},{"item":"shapefile","response":"success"},{"item":"sharedb","response":"success"},{"item":"sharepoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'kind' of undefined\n"},{"item":"sharp","response":"success"},{"item":"shasum","response":"success"},{"item":"shebang-command","response":"success"},{"item":"sheetify","response":"success"},{"item":"shell-escape","response":"success"},{"item":"shell-quote","response":"success"},{"item":"shelljs","response":"success"},{"item":"shelljs-exec-proxy","response":"success"},{"item":"shevyjs","response":"success"},{"item":"shimmer","response":"success"},{"item":"shipit-cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shipit-utils","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shopify-buy","response":"success"},{"item":"shorten-repo-url","response":"success"},{"item":"shortid","response":"success"},{"item":"shot","response":"success"},{"item":"should-sinon","response":"success"},{"item":"showdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"shpjs","response":"success"},{"item":"shrink-ray","response":"success"},{"item":"shuffle-array","response":"success"},{"item":"shuffle-seed","response":"success"},{"item":"sic-ecies","response":"success"},{"item":"sic-list","response":"success"},{"item":"siema","response":"success"},{"item":"siesta","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sigmajs","response":"success"},{"item":"sigmund","response":"success"},{"item":"signal-exit","response":"success"},{"item":"signale","response":"success"},{"item":"signalfx","response":"success"},{"item":"signalr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"signalr-no-jquery","response":"success"},{"item":"signals","response":"success"},{"item":"signature_pad","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simmerjs","response":"success"},{"item":"simonwep__selection-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simpl-schema","response":"success"},{"item":"simple-assign","response":"success"},{"item":"simple-cw-node","response":"success"},{"item":"simple-icons","response":"success"},{"item":"simple-lru","response":"success"},{"item":"simple-mock","response":"success"},{"item":"simple-oauth2","response":"success"},{"item":"simple-peer","response":"success"},{"item":"simple-query-string","response":"success"},{"item":"simple-url-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simple-websocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simple-xml","response":"success"},{"item":"simplebar","response":"success"},{"item":"simplecrawler","response":"success"},{"item":"simplemde","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simplesmtp","response":"success"},{"item":"simplestorage.js","response":"success"},{"item":"simulant","response":"success"},{"item":"single-line-log","response":"success"},{"item":"single-spa-react","response":"success"},{"item":"sinon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sinon-as-promised","response":"success"},{"item":"sinon-chai","response":"success"},{"item":"sinon-chrome","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sinon-express-mock","response":"success"},{"item":"sinon-mongoose","response":"success"},{"item":"sinon-stub-promise","response":"success"},{"item":"sinon-test","response":"success"},{"item":"sinonjs__fake-timers","response":"success"},{"item":"sipml","response":"success"},{"item":"sitemap2","response":"success"},{"item":"six-runtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sizeof","response":"success"},{"item":"sizzle","response":"success"},{"item":"sjcl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"skatejs","response":"success"},{"item":"sketchapp","response":"success"},{"item":"ski","response":"success"},{"item":"skmeans","response":"success"},{"item":"skyway","response":"success"},{"item":"slack-mock","response":"success"},{"item":"slack-node","response":"success"},{"item":"slack-winston","response":"success"},{"item":"slackdown","response":"success"},{"item":"slackify-html","response":"success"},{"item":"slate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-base64-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-html-serializer","response":"success"},{"item":"slate-irc","response":"success"},{"item":"slate-plain-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slate-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sleep","response":"success"},{"item":"slice-ansi","response":"success"},{"item":"slick-carousel","response":"success"},{"item":"slickgrid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slideout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"slimerjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(431,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(432,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(433,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(434,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(435,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"sloc","response":"success"},{"item":"slocket","response":"success"},{"item":"slonik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"slug","response":"success"},{"item":"sm-crypto","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-fox-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-truncate","response":"success"},{"item":"smartwizard","response":"success"},{"item":"smooth-scroll","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"smoothscroll-polyfill","response":"success"},{"item":"smpte-timecode","response":"success"},{"item":"smshelper","response":"success"},{"item":"smtp-server","response":"success"},{"item":"smtpapi","response":"success"},{"item":"snakecase-keys","response":"success"},{"item":"snappy","response":"success"},{"item":"snapsvg","response":"success"},{"item":"snazzy-info-window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snekfetch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snowball-stemmers","response":"success"},{"item":"sns-validator","response":"success"},{"item":"sntp","response":"success"},{"item":"socket.io","response":"success"},{"item":"socket.io-client","response":"success"},{"item":"socket.io-emitter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"socket.io-file","response":"success"},{"item":"socket.io-p2p","response":"success"},{"item":"socket.io-parser","response":"success"},{"item":"socket.io-redis","response":"success"},{"item":"socket.io.users","response":"success"},{"item":"socketcluster","response":"success"},{"item":"socketcluster-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"socketcluster-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"socketio-jwt","response":"success"},{"item":"socketio-jwt-auth","response":"success"},{"item":"socketio-wildcard","response":"success"},{"item":"socketty","response":"success"},{"item":"sockjs","response":"success"},{"item":"sockjs-client","response":"success"},{"item":"sodium-native","response":"success"},{"item":"solid-auth-client","response":"success"},{"item":"solid__react","response":"success"},{"item":"solr-client","response":"success"},{"item":"solution-center-communicator","response":"success"},{"item":"sonic-boom","response":"success"},{"item":"sort-array","response":"success"},{"item":"sort-object-keys","response":"success"},{"item":"sortablejs","response":"success"},{"item":"sorted-object","response":"success"},{"item":"sortobject","response":"success"},{"item":"soundjs","response":"success"},{"item":"soundmanager2","response":"success"},{"item":"soupbintcp","response":"success"},{"item":"source-list-map","response":"success"},{"item":"source-map-support","response":"success"},{"item":"space-pen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"spark-md5","response":"success"},{"item":"sparkpost","response":"success"},{"item":"sparql-http-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"sparqljs","response":"success"},{"item":"sparse-bitfield","response":"success"},{"item":"spatialite","response":"success"},{"item":"spdx-correct","response":"success"},{"item":"spdx-satisfies","response":"success"},{"item":"spdy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"speakeasy","response":"success"},{"item":"speakingurl","response":"success"},{"item":"spected","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"spectrogram","response":"success"},{"item":"spectrum","response":"success"},{"item":"spellchecker","response":"success"},{"item":"split","response":"success"},{"item":"split.js","response":"success"},{"item":"split2","response":"success"},{"item":"splitpanes","response":"success"},{"item":"splunk-bunyan-logger","response":"success"},{"item":"splunk-logging","response":"success"},{"item":"spotify-api","response":"success"},{"item":"spotify-node-applescript","response":"success"},{"item":"spotify-web-api-node","response":"success"},{"item":"spotify-web-playback-sdk","response":"success"},{"item":"sprintf","response":"success"},{"item":"sprintf-js","response":"success"},{"item":"sql-bricks","response":"success"},{"item":"sql-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sql-template","response":"success"},{"item":"sql.js","response":"success"},{"item":"sqlanywhere","response":"success"},{"item":"sqlite3","response":"success"},{"item":"sqlite3-promise","response":"success"},{"item":"sqlstring","response":"success"},{"item":"sqs-producer","response":"success"},{"item":"square-connect","response":"success"},{"item":"squirejs","response":"success"},{"item":"squirrelly","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"srp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"ssb-keys","response":"success"},{"item":"ssdeep","response":"success"},{"item":"ssh-key-decrypt","response":"success"},{"item":"ssh2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ssh2-sftp-client","response":"success"},{"item":"ssh2-streams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sshpk","response":"success"},{"item":"ssri","response":"success"},{"item":"stack-mapper","response":"success"},{"item":"stack-trace","response":"success"},{"item":"stack-utils","response":"success"},{"item":"stale-lru-cache","response":"success"},{"item":"stampit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"stamplay-js-sdk","response":"success"},{"item":"standard-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"standard-error","response":"success"},{"item":"standard-http-error","response":"success"},{"item":"standard-version","response":"success"},{"item":"start-server-webpack-plugin","response":"success"},{"item":"starwars-names","response":"success"},{"item":"stat-mode","response":"success"},{"item":"static-eval","response":"success"},{"item":"staticmaps","response":"success"},{"item":"stats-lite","response":"success"},{"item":"stats.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"statsd-client","response":"success"},{"item":"statuses","response":"success"},{"item":"std-mocks","response":"success"},{"item":"stdin","response":"success"},{"item":"stdout-stream","response":"success"},{"item":"steam","response":"success"},{"item":"steam-client","response":"success"},{"item":"steam-login","response":"success"},{"item":"steam-totp","response":"success"},{"item":"steamid","response":"success"},{"item":"steed","response":"success"},{"item":"stemmer","response":"success"},{"item":"sticky-cluster","response":"success"},{"item":"sticky-session","response":"success"},{"item":"stompit","response":"success"},{"item":"stompjs","response":"success"},{"item":"stoppable","response":"success"},{"item":"stopword","response":"success"},{"item":"storage-helper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"store","response":"success"},{"item":"storybook-addon-jsx","response":"success"},{"item":"storybook-react-router","response":"success"},{"item":"storybook-readme","response":"success"},{"item":"storybook__addon-info","response":"success"},{"item":"storybook__polymer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"strange","response":"success"},{"item":"stream-array","response":"success"},{"item":"stream-buffers","response":"success"},{"item":"stream-chain","response":"success"},{"item":"stream-csv-as-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-demux","response":"success"},{"item":"stream-each","response":"success"},{"item":"stream-fork","response":"success"},{"item":"stream-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-meter","response":"success"},{"item":"stream-series","response":"success"},{"item":"stream-shift","response":"success"},{"item":"stream-throttle","response":"success"},{"item":"stream-to-array","response":"success"},{"item":"stream-to-promise","response":"success"},{"item":"stream-to-string","response":"success"},{"item":"streaming-json-stringify","response":"success"},{"item":"streamjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"streamtest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stremio-addon-sdk","response":"success"},{"item":"strftime","response":"success"},{"item":"strict-uri-encode","response":"success"},{"item":"strikeentco__get","response":"success"},{"item":"string","response":"success"},{"item":"string-format","response":"success"},{"item":"string-hash","response":"success"},{"item":"string-pixel-width","response":"success"},{"item":"string-placeholder","response":"success"},{"item":"string-replace-webpack-plugin","response":"success"},{"item":"string-similarity","response":"success"},{"item":"string-strip-html","response":"success"},{"item":"string-template","response":"success"},{"item":"string_score","response":"success"},{"item":"stringify-object","response":"success"},{"item":"strip-color","response":"success"},{"item":"stripe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripe-checkout","response":"success"},{"item":"stripe-v2","response":"success"},{"item":"stripe-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripejs","response":"success"},{"item":"strman","response":"success"},{"item":"strong-cluster-control","response":"success"},{"item":"strong-error-handler","response":"success"},{"item":"strong-log-transformer","response":"success"},{"item":"strophe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophe.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophejs-plugin-roster","response":"success"},{"item":"struct","response":"success"},{"item":"structured-source","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"stubby","response":"success"},{"item":"style-search","response":"success"},{"item":"styled-components","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"styled-jsx","response":"success"},{"item":"styled-react-modal","response":"success"},{"item":"styled-system","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styled-system__css","response":"success"},{"item":"styled-system__should-forward-prop","response":"success"},{"item":"styled-system__theme-get","response":"success"},{"item":"styled-theming","response":"success"},{"item":"stylelint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stylelint-webpack-plugin","response":"success"},{"item":"stylenames","response":"success"},{"item":"styletron-engine-atomic","response":"success"},{"item":"styletron-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styletron-standard","response":"success"},{"item":"stylus","response":"success"},{"item":"subleveldown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"subscribe-ui-event","response":"success"},{"item":"subtitle","response":"success"},{"item":"succinct","response":"success"},{"item":"sudokus","response":"success"},{"item":"suitescript","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"summernote","response":"success"},{"item":"sumo-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"suncalc","response":"success"},{"item":"sunrise-sunset-js","response":"success"},{"item":"superagent","response":"success"},{"item":"superagent-bunyan","response":"success"},{"item":"superagent-no-cache","response":"success"},{"item":"superagent-prefix","response":"success"},{"item":"superagent-proxy","response":"success"},{"item":"supercluster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"supertest","response":"success"},{"item":"supertest-as-promised","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"supports-color","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svg-injector","response":"success"},{"item":"svg-intersections","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"svg-parser","response":"success"},{"item":"svg-path-bounding-box","response":"success"},{"item":"svg-path-parser","response":"success"},{"item":"svg-sprite","response":"success"},{"item":"svg-sprite-loader","response":"success"},{"item":"svg2png","response":"success"},{"item":"svg4everybody","response":"success"},{"item":"svgjs.draggable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svgjs.resize","response":"success"},{"item":"svgo","response":"success"},{"item":"svgr__rollup","response":"success"},{"item":"sw-precache","response":"success"},{"item":"sw-precache-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"swag","response":"success"},{"item":"swagger-express-middleware","response":"success"},{"item":"swagger-express-mw","response":"success"},{"item":"swagger-express-validator","response":"success"},{"item":"swagger-hapi","response":"success"},{"item":"swagger-jsdoc","response":"success"},{"item":"swagger-node-runner","response":"success"},{"item":"swagger-restify-mw","response":"success"},{"item":"swagger-sails-hook","response":"success"},{"item":"swagger-schema-official","response":"success"},{"item":"swagger-stats","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swagger-tools","response":"success"},{"item":"swagger-ui-dist","response":"success"},{"item":"swagger-ui-express","response":"success"},{"item":"swagger-ui-react","response":"success"},{"item":"swaggerize-express","response":"success"},{"item":"swe-validation","response":"success"},{"item":"swfobject","response":"success"},{"item":"swiftclick","response":"success"},{"item":"swig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swig-email-templates","response":"success"},{"item":"swipe","response":"success"},{"item":"swiper","response":"success"},{"item":"swipeview","response":"success"},{"item":"switchery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"swiz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sybase-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"sylvester","response":"success"},{"item":"sylvester-es6","response":"success"},{"item":"symbol-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"symlink-or-copy","response":"success"},{"item":"synaptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"syntax-error","response":"success"},{"item":"syslog-client","response":"success"},{"item":"systemjs","response":"success"},{"item":"tabbable","response":"success"},{"item":"table","response":"success"},{"item":"table-resolver","response":"success"},{"item":"tableau","response":"success"},{"item":"tableify","response":"success"},{"item":"tablesorter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"tabtab","response":"success"},{"item":"tabulator","response":"success"},{"item":"tabulator-tables","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"tail","response":"success"},{"item":"tampermonkey","response":"success"},{"item":"tapable","response":"success"},{"item":"tape","response":"success"},{"item":"tape-async","response":"success"},{"item":"tape-catch","response":"success"},{"item":"tape-promise","response":"success"},{"item":"tar","response":"success"},{"item":"tar-fs","response":"success"},{"item":"tar-stream","response":"success"},{"item":"tarantool-driver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"targz","response":"success"},{"item":"task-graph-runner","response":"success"},{"item":"task-worklet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"tcp-ping","response":"success"},{"item":"tcp-port-used","response":"success"},{"item":"tdweb","response":"success"},{"item":"tea-merge","response":"success"},{"item":"teddy","response":"success"},{"item":"tedious","response":"success"},{"item":"tedious-connection-pool","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"teechart","response":"success"}] \ No newline at end of file +[{"item":"7zip-min","response":"success"},{"item":"a-big-triangle","response":"success"},{"item":"a11y-dialog","response":"success"},{"item":"abbrev","response":"success"},{"item":"abs","response":"success"},{"item":"absolute","response":"success"},{"item":"abstract-leveldown","response":"success"},{"item":"acc-wizard","response":"success"},{"item":"accept","response":"success"},{"item":"accept-language-parser","response":"success"},{"item":"accepts","response":"success"},{"item":"accounting","response":"success"},{"item":"accurate-interval","response":"success"},{"item":"ace","response":"success"},{"item":"ace-diff","response":"success"},{"item":"acl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"acorn","response":"success"},{"item":"actioncable","response":"success"},{"item":"activedirectory2","response":"success"},{"item":"activestorage","response":"success"},{"item":"activex-access","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adox","response":"success"},{"item":"activex-dao","response":"success"},{"item":"activex-diskquota","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-excel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-faxcomexlib","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-infopath","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-interop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-iwshruntimelibrary","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"activex-libreoffice","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-msforms","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-mshtml","response":"success"},{"item":"activex-msxml2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-office","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-outlook","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-powerpoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-scripting","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-shdocvw","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-shell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-stdole","response":"success"},{"item":"activex-vbide","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-wia","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-word","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"adal-angular","response":"success"},{"item":"add-zero","response":"success"},{"item":"add2home","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/add2home"},{"item":"adhan","response":"success"},{"item":"adlib","response":"success"},{"item":"adm-zip","response":"success"},{"item":"adone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aes-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aframe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ag-channel","response":"success"},{"item":"ag-simple-broker","response":"success"},{"item":"agenda","response":"success"},{"item":"agent-base","response":"success"},{"item":"agiledigital__mule-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"agilite","response":"success"},{"item":"agora-rtc-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"airbnb-prop-types","response":"success"},{"item":"airtable","response":"success"},{"item":"ajv-async","response":"success"},{"item":"ajv-errors","response":"success"},{"item":"ajv-keywords","response":"success"},{"item":"ajv-merge-patch","response":"success"},{"item":"ajv-pack","response":"success"},{"item":"akamai-edgeworkers","response":"success"},{"item":"akumina-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ale-url-parser","response":"success"},{"item":"alertify","response":"success"},{"item":"alex","response":"success"},{"item":"alexa-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"alexa-voice-service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"algebra.js","response":"success"},{"item":"algoliasearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"algoliasearch-helper","response":"success"},{"item":"ali-app","response":"success"},{"item":"ali-oss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"align-text","response":"success"},{"item":"alks-node","response":"success"},{"item":"all-the-package-names","response":"success"},{"item":"alloy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"allure-js-commons","response":"success"},{"item":"almost-equal","response":"success"},{"item":"alpha-bravo","response":"success"},{"item":"alt","response":"success"},{"item":"amap-js-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api"},{"item":"amap-js-api-arrival-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-autocomplete","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-city-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-control-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-district-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-driving","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geocoder","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geolocation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-heatmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-indoor-map","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-line-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map-type","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map3d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api-map3d"},{"item":"amap-js-api-overview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-place-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-riding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-scale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-station-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-tool-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-transfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amazon-cognito-auth-js","response":"success"},{"item":"amazon-connect-streams","response":"success"},{"item":"amazon-product-api","response":"success"},{"item":"amcharts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amp","response":"success"},{"item":"amp-message","response":"success"},{"item":"amphtml-validator","response":"success"},{"item":"amplifier","response":"success"},{"item":"amplify","response":"success"},{"item":"amplify-deferred","response":"success"},{"item":"amplitude-js","response":"success"},{"item":"amqp","response":"success"},{"item":"amqp-connection-manager","response":"success"},{"item":"amqp-rpc","response":"success"},{"item":"amqplib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"analytics-node","response":"success"},{"item":"anchor-js","response":"success"},{"item":"angular","response":"success"},{"item":"angular-agility","response":"success"},{"item":"angular-animate","response":"success"},{"item":"angular-aria","response":"success"},{"item":"angular-block-ui","response":"success"},{"item":"angular-bootstrap-calendar","response":"success"},{"item":"angular-bootstrap-lightbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-breadcrumb","response":"success"},{"item":"angular-clipboard","response":"success"},{"item":"angular-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-cookies","response":"success"},{"item":"angular-deferred-bootstrap","response":"success"},{"item":"angular-desktop-notification","response":"success"},{"item":"angular-dialog-service","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-environment","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-es","response":"success"},{"item":"angular-feature-flags","response":"success"},{"item":"angular-file-saver","response":"success"},{"item":"angular-file-upload","response":"success"},{"item":"angular-formly","response":"success"},{"item":"angular-fullscreen","response":"success"},{"item":"angular-gettext","response":"success"},{"item":"angular-google-analytics","response":"success"},{"item":"angular-gridster","response":"success"},{"item":"angular-growl-v2","response":"success"},{"item":"angular-hotkeys","response":"success"},{"item":"angular-http-auth","response":"success"},{"item":"angular-httpi","response":"success"},{"item":"angular-idle","response":"success"},{"item":"angular-jwt","response":"success"},{"item":"angular-load","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-loading-bar","response":"success"},{"item":"angular-local-storage","response":"success"},{"item":"angular-localforage","response":"success"},{"item":"angular-locker","response":"success"},{"item":"angular-material","response":"success"},{"item":"angular-media-queries","response":"success"},{"item":"angular-meteor","response":"success"},{"item":"angular-mocks","response":"success"},{"item":"angular-modal","response":"success"},{"item":"angular-notifications","response":"success"},{"item":"angular-notify","response":"success"},{"item":"angular-oauth2","response":"success"},{"item":"angular-odata-resources","response":"success"},{"item":"angular-pdfjs-viewer","response":"success"},{"item":"angular-permission","response":"success"},{"item":"angular-promise-tracker","response":"success"},{"item":"angular-q-extras","response":"success"},{"item":"angular-q-spread","response":"success"},{"item":"angular-resource","response":"success"},{"item":"angular-route","response":"success"},{"item":"angular-sanitize","response":"success"},{"item":"angular-scenario","response":"success"},{"item":"angular-scroll","response":"success"},{"item":"angular-signalr-hub","response":"success"},{"item":"angular-spinner","response":"success"},{"item":"angular-storage","response":"success"},{"item":"angular-strap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-toastr","response":"success"},{"item":"angular-toasty","response":"success"},{"item":"angular-tooltips","response":"success"},{"item":"angular-translate","response":"success"},{"item":"angular-ui-bootstrap","response":"success"},{"item":"angular-ui-notification","response":"success"},{"item":"angular-ui-router","response":"success"},{"item":"angular-ui-scroll","response":"success"},{"item":"angular-ui-sortable","response":"success"},{"item":"angular-ui-tree","response":"success"},{"item":"angular-websocket","response":"success"},{"item":"angular-wizard","response":"success"},{"item":"angular-xeditable","response":"success"},{"item":"angular.throttle","response":"success"},{"item":"angularfire","response":"success"},{"item":"angularlocalstorage","response":"success"},{"item":"angulartics","response":"success"},{"item":"animation-frame","response":"success"},{"item":"animejs","response":"success"},{"item":"annyang","response":"success"},{"item":"ansi","response":"success"},{"item":"ansi-escape-sequences","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ansi-styles","response":"success"},{"item":"ansicolors","response":"success"},{"item":"antlr4","response":"success"},{"item":"antlr4-autosuggest","response":"success"},{"item":"any-db","response":"success"},{"item":"any-db-transaction","response":"success"},{"item":"anymatch","response":"success"},{"item":"anyproxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aos","response":"success"},{"item":"apex.js","response":"success"},{"item":"api-error-handler","response":"success"},{"item":"apicache","response":"success"},{"item":"apicalypse","response":"success"},{"item":"apigee-access","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apimocker","response":"success"},{"item":"apollo-codegen","response":"success"},{"item":"apollo-upload-client","response":"success"},{"item":"apostrophe","response":"success"},{"item":"app-module-path","response":"success"},{"item":"app-root-dir","response":"success"},{"item":"app-root-path","response":"success"},{"item":"appdmg","response":"success"},{"item":"append-query","response":"success"},{"item":"appframework","response":"success"},{"item":"apple-mapkit-js","response":"success"},{"item":"apple-music-api","response":"success"},{"item":"apple-signin-api","response":"success"},{"item":"applepayjs","response":"success"},{"item":"appletvjs","response":"success"},{"item":"applicationinsights-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apptimize__apptimize-web-sdk","response":"success"},{"item":"aqb","response":"success"},{"item":"arangodb","response":"success"},{"item":"arbiter","response":"success"},{"item":"arcgis-js-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"arcgis-rest-api","response":"success"},{"item":"arcgis-to-geojson-utils","response":"success"},{"item":"architect","response":"success"},{"item":"archiver","response":"success"},{"item":"archy","response":"success"},{"item":"are-we-there-yet","response":"success"},{"item":"argon2-browser","response":"success"},{"item":"argparse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"args","response":"success"},{"item":"argv","response":"success"},{"item":"aria-query","response":"success"},{"item":"arr-diff","response":"success"},{"item":"arr-union","response":"success"},{"item":"array-binarysearch.closest","response":"success"},{"item":"array-find-index","response":"success"},{"item":"array-foreach","response":"success"},{"item":"array-initial","response":"success"},{"item":"array-sort","response":"success"},{"item":"array-unique","response":"success"},{"item":"array.from","response":"success"},{"item":"array.prototype.flat","response":"success"},{"item":"array.prototype.flatmap","response":"success"},{"item":"artillery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'find' of undefined\n"},{"item":"asana","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asap","response":"success"},{"item":"ascii-art","response":"success"},{"item":"ascii2mathml","response":"success"},{"item":"asciichart","response":"success"},{"item":"asciify","response":"success"},{"item":"asenv","response":"success"},{"item":"asn1","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asn1js","response":"success"},{"item":"aspnet-identity-pw","response":"success"},{"item":"assert","response":"success"},{"item":"assert-equal-jsx","response":"success"},{"item":"assert-plus","response":"success"},{"item":"assertsharp","response":"success"},{"item":"assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n"},{"item":"astring","response":"success"},{"item":"async","response":"success"},{"item":"async-busboy","response":"success"},{"item":"async-cache","response":"success"},{"item":"async-eventemitter","response":"success"},{"item":"async-iterable-stream","response":"success"},{"item":"async-lock","response":"success"},{"item":"async-polling","response":"success"},{"item":"async-retry","response":"success"},{"item":"async-stream-emitter","response":"success"},{"item":"async-stream-generator","response":"success"},{"item":"async-writer","response":"success"},{"item":"async.nexttick","response":"success"},{"item":"asynciterator","response":"success"},{"item":"athenajs","response":"success"},{"item":"atlaskit__button","response":"success"},{"item":"atlaskit__calendar","response":"success"},{"item":"atlaskit__feedback-collector","response":"success"},{"item":"atlaskit__inline-edit","response":"success"},{"item":"atlaskit__layer","response":"success"},{"item":"atlaskit__single-select","response":"success"},{"item":"atlaskit__tree","response":"success"},{"item":"atlassian-crowd-client","response":"success"},{"item":"atmosphere.js","response":"success"},{"item":"atob","response":"success"},{"item":"atob-lite","response":"success"},{"item":"atom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"atom-keymap","response":"success"},{"item":"atom-mocha-test-runner","response":"success"},{"item":"atpl","response":"success"},{"item":"audio-context","response":"success"},{"item":"audio-play","response":"success"},{"item":"audiobuffer-to-wav","response":"success"},{"item":"audiosprite","response":"success"},{"item":"auth-header","response":"success"},{"item":"auth0","response":"success"},{"item":"auth0-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"auth0-js","response":"success"},{"item":"auth0-lock","response":"success"},{"item":"auth0.widget","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"authenticator","response":"success"},{"item":"auto-launch","response":"success"},{"item":"auto-sni","response":"success"},{"item":"autobahn","response":"success"},{"item":"autocannon","response":"success"},{"item":"autoprefixer","response":"success"},{"item":"autoprefixer-core","response":"success"},{"item":"autosize","response":"success"},{"item":"autosuggest-highlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/autosuggest-highlight"},{"item":"avoscloud-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"await-timeout","response":"success"},{"item":"awesomplete","response":"success"},{"item":"aws-iot-device-sdk","response":"success"},{"item":"aws-lambda","response":"success"},{"item":"aws-param-store","response":"success"},{"item":"aws-regions","response":"success"},{"item":"aws-serverless-express","response":"success"},{"item":"aws4","response":"success"},{"item":"axe-webdriverjs","response":"success"},{"item":"axel","response":"success"},{"item":"axios-cancel","response":"success"},{"item":"axios-case-converter","response":"success"},{"item":"axios-curlirize","response":"success"},{"item":"axios-token-interceptor","response":"success"},{"item":"axon","response":"success"},{"item":"azdata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-kusto-data","response":"success"},{"item":"azure-mobile-services-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-sb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"b-spline","response":"success"},{"item":"b2a","response":"success"},{"item":"b64-lite","response":"success"},{"item":"b_","response":"success"},{"item":"babel-code-frame","response":"success"},{"item":"babel-core","response":"success"},{"item":"babel-generator","response":"success"},{"item":"babel-plugin-macros","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-plugin-react-pug","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/babel-plugin-react-pug"},{"item":"babel-plugin-syntax-jsx","response":"success"},{"item":"babel-template","response":"success"},{"item":"babel-traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-types","response":"success"},{"item":"babel-webpack-plugin","response":"success"},{"item":"babel__code-frame","response":"success"},{"item":"babel__core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel__generator","response":"success"},{"item":"babel__standalone","response":"success"},{"item":"babel__template","response":"success"},{"item":"babel__traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babelify","response":"success"},{"item":"babylon","response":"success"},{"item":"babylon-walk","response":"success"},{"item":"babyparse","response":"success"},{"item":"backbone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"backbone-associations","response":"success"},{"item":"backbone-fetch-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone-relational","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.layoutmanager","response":"success"},{"item":"backbone.localstorage","response":"success"},{"item":"backbone.marionette","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.paginator","response":"success"},{"item":"backbone.radio","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backlog-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"backo2","response":"success"},{"item":"backoff","response":"success"},{"item":"backstopjs","response":"success"},{"item":"bagpipes","response":"success"},{"item":"baidu-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"baidumap-web-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/baidumap-web-sdk"},{"item":"balanced-match","response":"success"},{"item":"bandagedbd__bdapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"barbellweights","response":"success"},{"item":"barcode","response":"success"},{"item":"bardjs","response":"success"},{"item":"base-64","response":"success"},{"item":"base16","response":"success"},{"item":"base64-arraybuffer","response":"success"},{"item":"base64-async","response":"success"},{"item":"base64-js","response":"success"},{"item":"base64-stream","response":"success"},{"item":"base64-url","response":"success"},{"item":"base64topdf","response":"success"},{"item":"bases","response":"success"},{"item":"bash-glob","response":"success"},{"item":"basic-auth","response":"success"},{"item":"basicauth-middleware","response":"success"},{"item":"basiclightbox","response":"success"},{"item":"batch-stream","response":"success"},{"item":"battery-level","response":"success"},{"item":"bayes-classifier","response":"success"},{"item":"bazinga-translator","response":"success"},{"item":"bchaddrjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bcp-47","response":"success"},{"item":"bcp-47-match","response":"success"},{"item":"bcrypt","response":"success"},{"item":"bcrypt-nodejs","response":"success"},{"item":"bcryptjs","response":"success"},{"item":"bdfjs","response":"success"},{"item":"beanstalkd","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"beanstalkd-worker","response":"success"},{"item":"bearcat-es6","response":"success"},{"item":"beats","response":"success"},{"item":"bech32","response":"success"},{"item":"behavior3","response":"success"},{"item":"bell","response":"success"},{"item":"benchmark","response":"success"},{"item":"bencode","response":"success"},{"item":"bent","response":"success"},{"item":"better-curry","response":"success"},{"item":"better-queue","response":"success"},{"item":"better-scroll","response":"success"},{"item":"better-sqlite3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"bezier-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"bgiframe","response":"success"},{"item":"bidirectional-map","response":"success"},{"item":"big.js","response":"success"},{"item":"bigi","response":"success"},{"item":"bigint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/bigint/index.d.ts(9,19): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(21,11): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(57,13): error TS2300: Duplicate identifier 'BigInt'.\n"},{"item":"bignum","response":"success"},{"item":"bigscreen","response":"success"},{"item":"bin-pack","response":"success"},{"item":"binary-parse-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"binary-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"binaryextensions","response":"success"},{"item":"bind-ponyfill","response":"success"},{"item":"bindings","response":"success"},{"item":"bintrees","response":"success"},{"item":"bip21","response":"success"},{"item":"bip38","response":"success"},{"item":"bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"bit-twiddle","response":"success"},{"item":"bitcore-lib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bittorrent-protocol","response":"success"},{"item":"bitwise-xor","response":"success"},{"item":"bl","response":"success"},{"item":"blacklist","response":"success"},{"item":"blake2","response":"success"},{"item":"blazor__javascript-interop","response":"success"},{"item":"blazy","response":"success"},{"item":"bleno","response":"success"},{"item":"blessed","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blip-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blissfuljs","response":"success"},{"item":"blob-stream","response":"success"},{"item":"blob-to-buffer","response":"success"},{"item":"blocked","response":"success"},{"item":"blockies","response":"success"},{"item":"blocks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"bloem","response":"success"},{"item":"bloom-filter","response":"success"},{"item":"bloomfilter","response":"success"},{"item":"blue-tape","response":"success"},{"item":"bluebird","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"bluebird-global","response":"success"},{"item":"bluebird-retry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"blueimp-load-image","response":"success"},{"item":"blueimp-md5","response":"success"},{"item":"bmp-js","response":"success"},{"item":"bn.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"body-parser","response":"success"},{"item":"body-parser-xml","response":"success"},{"item":"body-scroll-lock","response":"success"},{"item":"bonjour","response":"success"},{"item":"bookshelf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"boolify-string","response":"success"},{"item":"boom","response":"success"},{"item":"bootbox","response":"success"},{"item":"bootpag","response":"success"},{"item":"bootstrap","response":"success"},{"item":"bootstrap-3-typeahead","response":"success"},{"item":"bootstrap-colorpicker","response":"success"},{"item":"bootstrap-datepicker","response":"success"},{"item":"bootstrap-fileinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"bootstrap-growl-ifightcrime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-maxlength","response":"success"},{"item":"bootstrap-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"bootstrap-notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-select","response":"success"},{"item":"bootstrap-slider","response":"success"},{"item":"bootstrap-switch","response":"success"},{"item":"bootstrap-toggle","response":"success"},{"item":"bootstrap-touchspin","response":"success"},{"item":"bootstrap-treeview","response":"success"},{"item":"bootstrap-validator","response":"success"},{"item":"bootstrap.paginator","response":"success"},{"item":"bootstrap.timepicker","response":"success"},{"item":"bootstrap.v3.datetimepicker","response":"success"},{"item":"bootstrap3-dialog","response":"success"},{"item":"bounce.js","response":"success"},{"item":"box-intersect","response":"success"},{"item":"box2d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bpmn-moddle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"brace-expansion","response":"success"},{"item":"braces","response":"success"},{"item":"brainhubeu__react-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"braintree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"braintree-web","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"braintree-web-drop-in","response":"success"},{"item":"breeze","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bresenham","response":"success"},{"item":"bricks.js","response":"success"},{"item":"bristol","response":"success"},{"item":"bristol-sentry","response":"success"},{"item":"bro-fs","response":"success"},{"item":"brorand","response":"success"},{"item":"brotli-webpack-plugin","response":"success"},{"item":"browser-bunyan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"browser-fingerprint","response":"success"},{"item":"browser-harness","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'kind' of undefined\n"},{"item":"browser-image-compression","response":"success"},{"item":"browser-or-node","response":"success"},{"item":"browser-pack","response":"success"},{"item":"browser-report","response":"success"},{"item":"browser-resolve","response":"success"},{"item":"browser-sync","response":"success"},{"item":"browser-sync-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"browserify","response":"success"},{"item":"browserslist","response":"success"},{"item":"browserslist-useragent","response":"success"},{"item":"bs58","response":"success"},{"item":"bser","response":"success"},{"item":"bson","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"btoa","response":"success"},{"item":"btoa-lite","response":"success"},{"item":"buble","response":"success"},{"item":"bucks","response":"success"},{"item":"buffer-compare","response":"success"},{"item":"buffer-crc32","response":"success"},{"item":"buffer-equal","response":"success"},{"item":"buffer-from","response":"success"},{"item":"buffer-reader","response":"success"},{"item":"buffer-split","response":"success"},{"item":"buffer-xor","response":"success"},{"item":"bufferhelper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"buffers","response":"success"},{"item":"bufferstream","response":"success"},{"item":"build-output-script","response":"success"},{"item":"bull","response":"success"},{"item":"bull-arena","response":"success"},{"item":"bull-board","response":"success"},{"item":"bulma-calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"bump-regex","response":"success"},{"item":"bunnymq","response":"success"},{"item":"bunyan","response":"success"},{"item":"bunyan-blackhole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"bunyan-config","response":"success"},{"item":"bunyan-format","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"bunyan-logentries","response":"success"},{"item":"bunyan-prettystream","response":"success"},{"item":"bunyan-seq","response":"success"},{"item":"bunyan-winston-adapter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"burns","response":"success"},{"item":"busboy","response":"success"},{"item":"business-rules-engine","response":"success"},{"item":"bwip-js","response":"success"},{"item":"byline","response":"success"},{"item":"byte-range","response":"success"},{"item":"bytebuffer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"bytes","response":"success"},{"item":"bytewise","response":"success"},{"item":"c3","response":"success"},{"item":"cacache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cache-manager","response":"success"},{"item":"cacheable-request","response":"success"},{"item":"cached-path-relative","response":"success"},{"item":"cadesplugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"cal-heatmap","response":"success"},{"item":"calendar","response":"success"},{"item":"calidation","response":"success"},{"item":"callback-to-async-iterator","response":"success"},{"item":"caller","response":"success"},{"item":"callsite","response":"success"},{"item":"calq","response":"success"},{"item":"camelcase-keys-deep","response":"success"},{"item":"camo","response":"success"},{"item":"camunda-external-task-client-js","response":"success"},{"item":"cancan","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"caniuse-api","response":"success"},{"item":"caniuse-lite","response":"success"},{"item":"cannon","response":"success"},{"item":"canvas-confetti","response":"success"},{"item":"canvas-gauges","response":"success"},{"item":"canvasjs","response":"success"},{"item":"canvaskit-wasm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"capitalize","response":"success"},{"item":"capture-console","response":"success"},{"item":"carbon-components-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"carbon__colors","response":"success"},{"item":"carbon__icon-helpers","response":"success"},{"item":"carbon__icons-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__layout","response":"success"},{"item":"carbon__motion","response":"success"},{"item":"carbon__pictograms-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__themes","response":"success"},{"item":"carbon__type","response":"success"},{"item":"carbone","response":"success"},{"item":"card-validator","response":"success"},{"item":"carlo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"case-sensitive-paths-webpack-plugin","response":"success"},{"item":"caseless","response":"success"},{"item":"cash","response":"success"},{"item":"cashaddrjs","response":"success"},{"item":"casperjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"cassandra-store","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"cassanknex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"catbox-memory","response":"success"},{"item":"catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"cavy","response":"success"},{"item":"cbor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ccap","response":"success"},{"item":"ccapture.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"center-align","response":"success"},{"item":"centra","response":"success"},{"item":"cesium","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cfenv","response":"success"},{"item":"cfn-response","response":"success"},{"item":"chai","response":"success"},{"item":"chai-almost","response":"success"},{"item":"chai-arrays","response":"success"},{"item":"chai-as-promised","response":"success"},{"item":"chai-datetime","response":"success"},{"item":"chai-dom","response":"success"},{"item":"chai-enzyme","response":"success"},{"item":"chai-fs","response":"success"},{"item":"chai-fuzzy","response":"success"},{"item":"chai-jest-snapshot","response":"success"},{"item":"chai-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"chai-json-schema","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"chai-like","response":"success"},{"item":"chai-moment","response":"success"},{"item":"chai-oequal","response":"success"},{"item":"chai-roughly","response":"success"},{"item":"chai-spies","response":"success"},{"item":"chai-string","response":"success"},{"item":"chai-style","response":"success"},{"item":"chai-subset","response":"success"},{"item":"chai-things","response":"success"},{"item":"chai-uuid","response":"success"},{"item":"chai-xml","response":"success"},{"item":"chalk-animation","response":"success"},{"item":"chalk-pipe","response":"success"},{"item":"chance","response":"success"},{"item":"change-case-object","response":"success"},{"item":"change-emitter","response":"success"},{"item":"changelog-parser","response":"success"},{"item":"chardet","response":"success"},{"item":"charm","response":"success"},{"item":"charset","response":"success"},{"item":"chart.js","response":"success"},{"item":"chartist","response":"success"},{"item":"chartmogul-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chayns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"check-error","response":"success"},{"item":"check-sum","response":"success"},{"item":"check-types","response":"success"},{"item":"checkstyle-formatter","response":"success"},{"item":"checksum","response":"success"},{"item":"cheerio","response":"success"},{"item":"chess.js","response":"success"},{"item":"chessboardjs","response":"success"},{"item":"child-process-promise","response":"success"},{"item":"chmodr","response":"success"},{"item":"chocolatechipjs","response":"success"},{"item":"chordsheetjs","response":"success"},{"item":"chosen-js","response":"success"},{"item":"chownr","response":"success"},{"item":"chroma-js","response":"success"},{"item":"chrome","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"chrome-apps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromecast-caf-receiver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"chromecast-caf-sender","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromedriver","response":"success"},{"item":"chui","response":"success"},{"item":"chunk","response":"success"},{"item":"chunk-text","response":"success"},{"item":"ci-info","response":"success"},{"item":"cipher-base","response":"success"},{"item":"circuit-breaker-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"circular-dependency-plugin","response":"success"},{"item":"circular-json","response":"success"},{"item":"ckeditor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clamp","response":"success"},{"item":"clamp-js","response":"success"},{"item":"clamp-js-main","response":"success"},{"item":"clarinet","response":"success"},{"item":"classnames","response":"success"},{"item":"cldrjs","response":"success"},{"item":"clean-css","response":"success"},{"item":"clean-git-ref","response":"success"},{"item":"clean-regexp","response":"success"},{"item":"clear","response":"success"},{"item":"clearbladejs-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"clearbladejs-node","response":"success"},{"item":"clearbladejs-server","response":"success"},{"item":"cleave.js","response":"success"},{"item":"cli","response":"success"},{"item":"cli-box","response":"success"},{"item":"cli-color","response":"success"},{"item":"cli-interact","response":"success"},{"item":"cli-progress","response":"success"},{"item":"cli-spinner","response":"success"},{"item":"cli-spinners","response":"success"},{"item":"cli-table","response":"success"},{"item":"cli-table2","response":"success"},{"item":"client-sessions","response":"success"},{"item":"clientjs","response":"success"},{"item":"cliff","response":"success"},{"item":"clipboard","response":"success"},{"item":"clipboard-js","response":"success"},{"item":"clmtrackr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clndr","response":"success"},{"item":"clockpicker","response":"success"},{"item":"clone","response":"success"},{"item":"clone-deep","response":"success"},{"item":"cloneable-readable","response":"success"},{"item":"cloner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"closure-compiler","response":"success"},{"item":"cloud-config-client","response":"success"},{"item":"cloud-env","response":"success"},{"item":"cloudflare-apps","response":"success"},{"item":"clovelced-plugin-audiomanagement","response":"success"},{"item":"clownface","response":"success"},{"item":"cls-hooked","response":"success"},{"item":"clui","response":"success"},{"item":"clusterize.js","response":"success"},{"item":"cmd-shim","response":"success"},{"item":"cnpj","response":"success"},{"item":"co","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"co-body","response":"success"},{"item":"co-views","response":"success"},{"item":"code","response":"success"},{"item":"codeflask","response":"success"},{"item":"codegen.macro","response":"success"},{"item":"codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"codependency","response":"success"},{"item":"coffeeify","response":"success"},{"item":"coinbase","response":"success"},{"item":"coinbase-commerce-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"coinlist","response":"success"},{"item":"coinstring","response":"success"},{"item":"collections","response":"success"},{"item":"collectionsjs","response":"success"},{"item":"color","response":"success"},{"item":"color-check","response":"success"},{"item":"color-convert","response":"success"},{"item":"color-diff","response":"success"},{"item":"color-hash","response":"success"},{"item":"color-name","response":"success"},{"item":"color-namer","response":"success"},{"item":"color-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"color-support","response":"success"},{"item":"colorbrewer","response":"success"},{"item":"colornames","response":"success"},{"item":"colresizable","response":"success"},{"item":"columnify","response":"success"},{"item":"com.darktalker.cordova.screenshot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"com.wikitude.phonegap.wikitudeplugin","response":"success"},{"item":"combinations","response":"success"},{"item":"combine-reducers","response":"success"},{"item":"combine-source-map","response":"success"},{"item":"combined-stream","response":"success"},{"item":"combokeys","response":"success"},{"item":"cometd","response":"success"},{"item":"command-exists","response":"success"},{"item":"command-line-args","response":"success"},{"item":"command-line-commands","response":"success"},{"item":"command-line-usage","response":"success"},{"item":"commander-remaining-args","response":"success"},{"item":"commangular","response":"success"},{"item":"comment-json","response":"success"},{"item":"commercetools__enzyme-extensions","response":"success"},{"item":"commitlint__load","response":"success"},{"item":"common-errors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"common-prefix","response":"success"},{"item":"common-tags","response":"success"},{"item":"commondir","response":"success"},{"item":"commonmark","response":"success"},{"item":"compare-func","response":"success"},{"item":"compare-function","response":"success"},{"item":"compare-version","response":"success"},{"item":"compass-vertical-rhythm","response":"success"},{"item":"complex","response":"success"},{"item":"complex.js","response":"success"},{"item":"component-emitter","response":"success"},{"item":"compose-function","response":"success"},{"item":"compress.js","response":"success"},{"item":"compressible","response":"success"},{"item":"compression","response":"success"},{"item":"compression-webpack-plugin","response":"success"},{"item":"compute-argmax","response":"success"},{"item":"compute-quantile","response":"success"},{"item":"compute-stdev","response":"success"},{"item":"concat-map","response":"success"},{"item":"concat-stream","response":"success"},{"item":"concaveman","response":"success"},{"item":"concurrently","response":"success"},{"item":"conditional","response":"success"},{"item":"conductor-animate","response":"success"},{"item":"confidence","response":"success"},{"item":"config","response":"success"},{"item":"config-yaml","response":"success"},{"item":"configs-overload","response":"success"},{"item":"configstore","response":"success"},{"item":"configurable","response":"success"},{"item":"confit","response":"success"},{"item":"connect","response":"success"},{"item":"connect-azuretables","response":"success"},{"item":"connect-busboy","response":"success"},{"item":"connect-datadog","response":"success"},{"item":"connect-ensure-login","response":"success"},{"item":"connect-flash","response":"success"},{"item":"connect-history-api-fallback","response":"success"},{"item":"connect-history-api-fallback-exclusions","response":"success"},{"item":"connect-livereload","response":"success"},{"item":"connect-modrewrite","response":"success"},{"item":"connect-mongodb-session","response":"success"},{"item":"connect-pg-simple","response":"success"},{"item":"connect-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"connect-sequence","response":"success"},{"item":"connect-slashes","response":"success"},{"item":"connect-timeout","response":"success"},{"item":"connect-trim-body","response":"success"},{"item":"console-log-level","response":"success"},{"item":"console-stamp","response":"success"},{"item":"console-ui","response":"success"},{"item":"consolidate","response":"success"},{"item":"consul","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"consumable-stream","response":"success"},{"item":"contains-path","response":"success"},{"item":"content-disposition","response":"success"},{"item":"content-range","response":"success"},{"item":"content-type","response":"success"},{"item":"contentful-resolve-response","response":"success"},{"item":"contentstack","response":"success"},{"item":"contextjs","response":"success"},{"item":"continuation-local-storage","response":"success"},{"item":"contract-proxy-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"conventional-changelog","response":"success"},{"item":"conventional-changelog-config-spec","response":"success"},{"item":"conventional-changelog-core","response":"success"},{"item":"conventional-changelog-preset-loader","response":"success"},{"item":"conventional-changelog-writer","response":"success"},{"item":"conventional-commits-parser","response":"success"},{"item":"conventional-recommended-bump","response":"success"},{"item":"convert-layout","response":"success"},{"item":"convert-source-map","response":"success"},{"item":"convert-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"convert-units","response":"success"},{"item":"convict","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"cookie","response":"success"},{"item":"cookie-parser","response":"success"},{"item":"cookie-session","response":"success"},{"item":"cookie-signature","response":"success"},{"item":"cookie_js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"cookiejar","response":"success"},{"item":"cookies","response":"success"},{"item":"copy","response":"success"},{"item":"copy-paste","response":"success"},{"item":"copy-webpack-plugin","response":"success"},{"item":"copyfiles","response":"success"},{"item":"cordova","response":"success"},{"item":"cordova-ionic","response":"success"},{"item":"cordova-plugin-app-version","response":"success"},{"item":"cordova-plugin-background-mode","response":"success"},{"item":"cordova-plugin-badge","response":"success"},{"item":"cordova-plugin-ble-central","response":"success"},{"item":"cordova-plugin-bluetoothclassic-serial","response":"success"},{"item":"cordova-plugin-canvascamera","response":"success"},{"item":"cordova-plugin-device-name","response":"success"},{"item":"cordova-plugin-email-composer","response":"success"},{"item":"cordova-plugin-file-opener2","response":"success"},{"item":"cordova-plugin-ibeacon","response":"success"},{"item":"cordova-plugin-insomnia","response":"success"},{"item":"cordova-plugin-keyboard","response":"success"},{"item":"cordova-plugin-mapsforge","response":"success"},{"item":"cordova-plugin-ms-adal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cordova-plugin-native-keyboard","response":"success"},{"item":"cordova-plugin-ouralabs","response":"success"},{"item":"cordova-plugin-qrscanner","response":"success"},{"item":"cordova-plugin-spinner","response":"success"},{"item":"cordova-plugin-websql","response":"success"},{"item":"cordova-sqlite-storage","response":"success"},{"item":"cordova-universal-links-plugin","response":"success"},{"item":"cordova_app_version_plugin","response":"success"},{"item":"cordovarduino","response":"success"},{"item":"core-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"core-object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"correlation-id","response":"success"},{"item":"cors","response":"success"},{"item":"cote","response":"success"},{"item":"couchbase","response":"success"},{"item":"countdown","response":"success"},{"item":"counterpart","response":"success"},{"item":"countries-and-timezones","response":"success"},{"item":"country-data","response":"success"},{"item":"country-list","response":"success"},{"item":"country-select-js","response":"success"},{"item":"coverup","response":"success"},{"item":"cpx","response":"success"},{"item":"cqrs-domain","response":"success"},{"item":"cradle","response":"success"},{"item":"crc","response":"success"},{"item":"create-error","response":"success"},{"item":"create-hash","response":"success"},{"item":"create-hmac","response":"success"},{"item":"create-react-class","response":"success"},{"item":"create-subscription","response":"success"},{"item":"create-xpub","response":"success"},{"item":"createjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/createjs"},{"item":"createjs-lib","response":"success"},{"item":"credential","response":"success"},{"item":"credit-card-type","response":"success"},{"item":"critters-webpack-plugin","response":"success"},{"item":"cron","response":"success"},{"item":"cron-converter","response":"success"},{"item":"croppie","response":"success"},{"item":"cross-spawn","response":"success"},{"item":"cross-storage","response":"success"},{"item":"crossfilter","response":"success"},{"item":"crossroads","response":"success"},{"item":"crpc","response":"success"},{"item":"crumb","response":"success"},{"item":"cryptex","response":"success"},{"item":"cryptiles","response":"success"},{"item":"crypto-js","response":"success"},{"item":"cryptojs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cryptr","response":"success"},{"item":"cson","response":"success"},{"item":"csp-html-webpack-plugin","response":"success"},{"item":"csprng","response":"success"},{"item":"csrf","response":"success"},{"item":"css","response":"success"},{"item":"css-font-loading-module","response":"success"},{"item":"css-mediaquery","response":"success"},{"item":"css-modules","response":"success"},{"item":"css-modules-loader-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"css-modules-require-hook","response":"success"},{"item":"css-selector-tokenizer","response":"success"},{"item":"css-to-style","response":"success"},{"item":"css-tree","response":"success"},{"item":"cssbeautify","response":"success"},{"item":"cssesc","response":"success"},{"item":"cssnano","response":"success"},{"item":"csso","response":"success"},{"item":"csurf","response":"success"},{"item":"csv2json","response":"success"},{"item":"csvrow","response":"success"},{"item":"csvtojson","response":"success"},{"item":"cucumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cuid","response":"success"},{"item":"cuint","response":"success"},{"item":"currency-formatter","response":"success"},{"item":"current-git-branch","response":"success"},{"item":"cuss","response":"success"},{"item":"custom-error-generator","response":"success"},{"item":"custom-functions-runtime","response":"success"},{"item":"cwd","response":"success"},{"item":"cwise","response":"success"},{"item":"cwise-compiler","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"cwise-parser","response":"success"},{"item":"cyberblast__config","response":"success"},{"item":"cyberblast__logger","response":"success"},{"item":"cyberblast__webserver","response":"success"},{"item":"cybozulabs-md5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cypress-axe","response":"success"},{"item":"cypress-cucumber-preprocessor","response":"success"},{"item":"cypress-image-snapshot","response":"success"},{"item":"cytoscape","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d","response":"success"},{"item":"d20","response":"success"},{"item":"d3","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d3-array","response":"success"},{"item":"d3-axis","response":"success"},{"item":"d3-box","response":"success"},{"item":"d3-brush","response":"success"},{"item":"d3-chord","response":"success"},{"item":"d3-cloud","response":"success"},{"item":"d3-collection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"d3-color","response":"success"},{"item":"d3-contour","response":"success"},{"item":"d3-delaunay","response":"success"},{"item":"d3-dispatch","response":"success"},{"item":"d3-drag","response":"success"},{"item":"d3-dsv","response":"success"},{"item":"d3-ease","response":"success"},{"item":"d3-fetch","response":"success"},{"item":"d3-force","response":"success"},{"item":"d3-format","response":"success"},{"item":"d3-geo","response":"success"},{"item":"d3-graphviz","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-hexbin","response":"success"},{"item":"d3-hierarchy","response":"success"},{"item":"d3-hsv","response":"success"},{"item":"d3-interpolate","response":"success"},{"item":"d3-interpolate-path","response":"success"},{"item":"d3-path","response":"success"},{"item":"d3-polygon","response":"success"},{"item":"d3-quadtree","response":"success"},{"item":"d3-queue","response":"success"},{"item":"d3-random","response":"success"},{"item":"d3-request","response":"success"},{"item":"d3-require","response":"success"},{"item":"d3-sankey","response":"success"},{"item":"d3-scale","response":"success"},{"item":"d3-scale-chromatic","response":"success"},{"item":"d3-selection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"d3-selection-multi","response":"success"},{"item":"d3-shape","response":"success"},{"item":"d3-time","response":"success"},{"item":"d3-time-format","response":"success"},{"item":"d3-timer","response":"success"},{"item":"d3-tip","response":"success"},{"item":"d3-transition","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-voronoi","response":"success"},{"item":"d3-zoom","response":"success"},{"item":"d3.slider","response":"success"},{"item":"d3kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3pie","response":"success"},{"item":"dagre","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-d3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-layout","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dashify","response":"success"},{"item":"dat.gui","response":"success"},{"item":"data-driven","response":"success"},{"item":"datadog-metrics","response":"success"},{"item":"datadog-statsd-metrics-collector","response":"success"},{"item":"datadog-tracer","response":"success"},{"item":"datadog-winston","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"datastore-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"datastore-level","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"datatables.net","response":"success"},{"item":"datatables.net-autofill","response":"success"},{"item":"datatables.net-buttons","response":"success"},{"item":"datatables.net-colreorder","response":"success"},{"item":"datatables.net-fixedcolumns","response":"success"},{"item":"datatables.net-fixedheader","response":"success"},{"item":"datatables.net-keytable","response":"success"},{"item":"datatables.net-rowgroup","response":"success"},{"item":"datatables.net-rowreorder","response":"success"},{"item":"datatables.net-scroller","response":"success"},{"item":"datatables.net-select","response":"success"},{"item":"date-and-time","response":"success"},{"item":"date-arithmetic","response":"success"},{"item":"date-fp","response":"success"},{"item":"date-now","response":"success"},{"item":"date-range-array","response":"success"},{"item":"date-utils","response":"success"},{"item":"date.format.js","response":"success"},{"item":"dateformat","response":"success"},{"item":"datejs","response":"success"},{"item":"daterangepicker","response":"success"},{"item":"dav","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dayzed","response":"success"},{"item":"db-migrate-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db-migrate-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db.js","response":"success"},{"item":"dbus","response":"success"},{"item":"dc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"deasync","response":"success"},{"item":"death","response":"success"},{"item":"debessmann","response":"success"},{"item":"debounce","response":"success"},{"item":"debounce-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"debug","response":"success"},{"item":"decay","response":"success"},{"item":"decode-entities","response":"success"},{"item":"decode-uri-component","response":"success"},{"item":"decomment","response":"success"},{"item":"decompress","response":"success"},{"item":"decorum","response":"success"},{"item":"dedent","response":"success"},{"item":"deep-assign","response":"success"},{"item":"deep-diff","response":"success"},{"item":"deep-equal","response":"success"},{"item":"deep-equal-in-any-order","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"deep-extend","response":"success"},{"item":"deep-freeze","response":"success"},{"item":"deep-freeze-strict","response":"success"},{"item":"deezer-sdk","response":"success"},{"item":"default-gateway","response":"success"},{"item":"defaults","response":"success"},{"item":"defaults-deep","response":"success"},{"item":"defer-promise","response":"success"},{"item":"define-properties","response":"success"},{"item":"defined","response":"success"},{"item":"deglob","response":"success"},{"item":"deindent","response":"success"},{"item":"deku","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"delaunator","response":"success"},{"item":"delete-empty","response":"success"},{"item":"deline","response":"success"},{"item":"deluge","response":"success"},{"item":"denodeify","response":"success"},{"item":"deoxxa-content-type","response":"success"},{"item":"depd","response":"success"},{"item":"dependency-tree","response":"success"},{"item":"deployjava","response":"success"},{"item":"deprecate","response":"success"},{"item":"deps-sort","response":"success"},{"item":"derhuerst__cli-on-key","response":"success"},{"item":"destroy","response":"success"},{"item":"destroy-on-hwm","response":"success"},{"item":"detect-character-encoding","response":"success"},{"item":"detect-emoji-support","response":"success"},{"item":"detect-hover","response":"success"},{"item":"detect-it","response":"success"},{"item":"detect-node","response":"success"},{"item":"detect-passive-events","response":"success"},{"item":"detect-pointer","response":"success"},{"item":"detect-port","response":"success"},{"item":"detect-touch-events","response":"success"},{"item":"detective","response":"success"},{"item":"detox","response":"success"},{"item":"dev-ip","response":"success"},{"item":"devexpress-aspnetcore-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"devexpress-web","response":"success"},{"item":"dexie-batch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"df-visible","response":"success"},{"item":"dhtmlxgantt","response":"success"},{"item":"dhtmlxscheduler","response":"success"},{"item":"di","response":"success"},{"item":"di-lite","response":"success"},{"item":"diacritics","response":"success"},{"item":"dialog-polyfill","response":"success"},{"item":"dialogflow-fulfillment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n"},{"item":"dicer","response":"success"},{"item":"didyoumean","response":"success"},{"item":"diff","response":"success"},{"item":"diff-match-patch","response":"success"},{"item":"diff2html","response":"success"},{"item":"diffie-hellman","response":"success"},{"item":"difflib","response":"success"},{"item":"digibyte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dinero.js","response":"success"},{"item":"dingtalk-robot-sender","response":"success"},{"item":"dir-glob","response":"success"},{"item":"dir-resolve","response":"success"},{"item":"dir-walker-gen","response":"success"},{"item":"direction","response":"success"},{"item":"dirname-regex","response":"success"},{"item":"dirty-chai","response":"success"},{"item":"discontinuous-range","response":"success"},{"item":"discord-rpc","response":"success"},{"item":"discourse-sso","response":"success"},{"item":"dispatchr","response":"success"},{"item":"disposable-email-domains","response":"success"},{"item":"distributions","response":"success"},{"item":"distributions-poisson-quantile","response":"success"},{"item":"diva.js","response":"success"},{"item":"djv","response":"success"},{"item":"dkim-signer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dlv","response":"success"},{"item":"dnssd","response":"success"},{"item":"doccookies","response":"success"},{"item":"dock-spawn","response":"success"},{"item":"docker-events","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"dockerode","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"docopt","response":"success"},{"item":"doctrine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"document-ready","response":"success"},{"item":"documentdb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"documentdb-server","response":"success"},{"item":"documentdb-session","response":"success"},{"item":"docx-templates","response":"success"},{"item":"dogapi","response":"success"},{"item":"doge-seed","response":"success"},{"item":"dojo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dom-clipboard-api","response":"success"},{"item":"dom-inputevent","response":"success"},{"item":"dom-matches","response":"success"},{"item":"dom-mediacapture-record","response":"success"},{"item":"dom-parser","response":"success"},{"item":"dom-to-image","response":"success"},{"item":"dom4","response":"success"},{"item":"domexception","response":"success"},{"item":"domhandler","response":"success"},{"item":"domo","response":"success"},{"item":"dompurify","response":"success"},{"item":"domready","response":"success"},{"item":"domtagger","response":"success"},{"item":"domurl","response":"success"},{"item":"domutils","response":"success"},{"item":"donna","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dookie","response":"success"},{"item":"dos2unix","response":"success"},{"item":"dot","response":"success"},{"item":"dot-object","response":"success"},{"item":"dot-prop-immutable","response":"success"},{"item":"dotdir-regex","response":"success"},{"item":"dotdotdot","response":"success"},{"item":"dotenv-flow","response":"success"},{"item":"dotenv-parse-variables","response":"success"},{"item":"dotenv-safe","response":"success"},{"item":"dotenv-webpack","response":"success"},{"item":"dotfile-regex","response":"success"},{"item":"dottie","response":"success"},{"item":"double-ended-queue","response":"success"},{"item":"doublearray","response":"success"},{"item":"doubleclick-gpt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"download","response":"success"},{"item":"downloadjs","response":"success"},{"item":"downscale","response":"success"},{"item":"dplayer","response":"success"},{"item":"draft-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draft-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draftjs-to-html","response":"success"},{"item":"drag-timetable","response":"success"},{"item":"draggabilly","response":"success"},{"item":"dragscroll","response":"success"},{"item":"dragselect","response":"success"},{"item":"dragster","response":"success"},{"item":"dragula","response":"success"},{"item":"driftless","response":"success"},{"item":"drivelist","response":"success"},{"item":"dropbox-chooser","response":"success"},{"item":"dropboxjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dropkickjs","response":"success"},{"item":"dropzone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ds18b20","response":"success"},{"item":"dsv","response":"success"},{"item":"dts-bundle","response":"success"},{"item":"dts-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"du","response":"success"},{"item":"duckduckgo-images-api","response":"success"},{"item":"duo_web_sdk","response":"success"},{"item":"duosecurity__duo_web","response":"success"},{"item":"duplexer2","response":"success"},{"item":"duplexer3","response":"success"},{"item":"duplexify","response":"success"},{"item":"duplicate-package-checker-webpack-plugin","response":"success"},{"item":"durandal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dush","response":"success"},{"item":"dustjs-linkedin","response":"success"},{"item":"dv","response":"success"},{"item":"dvtng-jss","response":"success"},{"item":"dw-bxslider-4","response":"success"},{"item":"dwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"dygraphs","response":"success"},{"item":"dymo-label-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dynamic-time-warping","response":"success"},{"item":"dynamodb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"dynatable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dynatrace","response":"success"},{"item":"dynogels","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"each","response":"success"},{"item":"earcut","response":"success"},{"item":"easeljs","response":"success"},{"item":"eases","response":"success"},{"item":"easy-api-request","response":"success"},{"item":"easy-jsend","response":"success"},{"item":"easy-rbac","response":"success"},{"item":"easy-session","response":"success"},{"item":"easy-table","response":"success"},{"item":"easy-xapi","response":"success"},{"item":"easy-xapi-utils","response":"success"},{"item":"easydate","response":"success"},{"item":"ebml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ebongarde-root","response":"success"},{"item":"eccrypto","response":"success"},{"item":"echarts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ecma-proposal-math-extensions","response":"success"},{"item":"ecore","response":"success"},{"item":"ecurve","response":"success"},{"item":"ed25519","response":"success"},{"item":"ed2curve","response":"success"},{"item":"edmonds-blossom","response":"success"},{"item":"edtr-io__mathquill","response":"success"},{"item":"ee-first","response":"success"},{"item":"egg-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"egg.js","response":"success"},{"item":"egjs__axes","response":"success"},{"item":"egjs__component","response":"success"},{"item":"ej.web.all","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"ejs","response":"success"},{"item":"ejs-locals","response":"success"},{"item":"ejson","response":"success"},{"item":"elastic.js","response":"success"},{"item":"elasticlunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"elasticsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"electron-clipboard-extended","response":"success"},{"item":"electron-devtools-installer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"electron-json-storage","response":"success"},{"item":"electron-load-devtool","response":"success"},{"item":"electron-localshortcut","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-notifications","response":"success"},{"item":"electron-notify","response":"success"},{"item":"electron-packager","response":"success"},{"item":"electron-prompt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-settings","response":"success"},{"item":"electron-spellchecker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-window-state","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"element-closest","response":"success"},{"item":"element-resize-detector","response":"success"},{"item":"element-resize-event","response":"success"},{"item":"elementtree","response":"success"},{"item":"elgamal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"elliptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"elm","response":"success"},{"item":"elo-rank","response":"success"},{"item":"elv","response":"success"},{"item":"email-templates","response":"success"},{"item":"ember","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data__adapter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__model","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__serializer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-data__store","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-feature-flags","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-modal-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-resolver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-testing-helpers","response":"success"},{"item":"ember__application","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember__controller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__debug","response":"success"},{"item":"ember__engine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__error","response":"success"},{"item":"ember__object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__ordered-set","response":"success"},{"item":"ember__polyfills","response":"success"},{"item":"ember__routing","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__runloop","response":"success"},{"item":"ember__service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__string","response":"success"},{"item":"ember__template","response":"success"},{"item":"ember__test","response":"success"},{"item":"ember__test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"emissary","response":"success"},{"item":"emoji-flags","response":"success"},{"item":"emoji-js","response":"success"},{"item":"emoji-mart","response":"success"},{"item":"emoji-regex","response":"success"},{"item":"emoji-strip","response":"success"},{"item":"emojione","response":"success"},{"item":"empower","response":"success"},{"item":"empty-dir","response":"success"},{"item":"emscripten","response":"success"},{"item":"encodeurl","response":"success"},{"item":"encoding-down","response":"success"},{"item":"encoding-japanese","response":"success"},{"item":"end-of-stream","response":"success"},{"item":"engine-check","response":"success"},{"item":"engine.io","response":"success"},{"item":"engine.io-client","response":"success"},{"item":"enhanced-resolve","response":"success"},{"item":"enigma.js","response":"success"},{"item":"enquire.js","response":"success"},{"item":"ensure-posix-path","response":"success"},{"item":"ent","response":"success"},{"item":"entities","response":"success"},{"item":"entria__relay-experimental","response":"success"},{"item":"env-ci","response":"success"},{"item":"env-to-object","response":"success"},{"item":"envify","response":"success"},{"item":"enzyme","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-adapter-react-15","response":"success"},{"item":"enzyme-adapter-react-15.4","response":"success"},{"item":"enzyme-adapter-react-16","response":"success"},{"item":"enzyme-async-helpers","response":"success"},{"item":"enzyme-react-intl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-to-json","response":"success"},{"item":"eonasdan-bootstrap-datetimepicker","response":"success"},{"item":"epiceditor","response":"success"},{"item":"epilogue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"epub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"eq.js","response":"success"},{"item":"error-subclass","response":"success"},{"item":"errorhandler","response":"success"},{"item":"es-feature-detection","response":"success"},{"item":"es-module-lexer","response":"success"},{"item":"es-to-primitive","response":"success"},{"item":"es6-collections","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/es6-collections/index.d.ts(22,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(47,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(53,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(67,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(73,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakMap', but here has type 'WeakMap'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(102,24): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(103,48): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakSet', but here has type 'WeakSet'.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(28,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(34,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(54,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(64,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(69,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(87,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\n"},{"item":"es6-promisify","response":"success"},{"item":"es6-set-proptypes","response":"success"},{"item":"es6-shim","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'statements' of undefined\n"},{"item":"es6-weak-map","response":"success"},{"item":"esc-pos-encoder","response":"success"},{"item":"escape-html","response":"success"},{"item":"escape-latex","response":"success"},{"item":"escape-regexp","response":"success"},{"item":"escodegen","response":"success"},{"item":"escpos","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint-plugin-prettier","response":"success"},{"item":"eslint-scope","response":"success"},{"item":"eslint-visitor-keys","response":"success"},{"item":"esm","response":"success"},{"item":"esprima","response":"success"},{"item":"esprima-walk","response":"success"},{"item":"espruino","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'global' must be of type 'any', but here has type 'Global'.\n"},{"item":"esquery","response":"success"},{"item":"esrever","response":"success"},{"item":"esri-leaflet","response":"success"},{"item":"esri-leaflet-geocoder","response":"success"},{"item":"estimate","response":"success"},{"item":"estraverse","response":"success"},{"item":"estree","response":"success"},{"item":"estree-jsx","response":"success"},{"item":"etag","response":"success"},{"item":"eth-lightwallet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eth-sig-util","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ethereum-protocol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"ethereumjs-abi","response":"success"},{"item":"ethjs-signer","response":"success"},{"item":"eureka-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"evaporate","response":"success"},{"item":"event-emitter","response":"success"},{"item":"event-emitter-es6","response":"success"},{"item":"event-hooks-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"event-kit","response":"success"},{"item":"event-loop-lag","response":"success"},{"item":"event-stream","response":"success"},{"item":"event-to-promise","response":"success"},{"item":"events","response":"success"},{"item":"events.once","response":"success"},{"item":"eventsource","response":"success"},{"item":"evernote","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"excel-style-dataformatter","response":"success"},{"item":"exenv","response":"success"},{"item":"exif","response":"success"},{"item":"exit","response":"success"},{"item":"exorcist","response":"success"},{"item":"expand-tilde","response":"success"},{"item":"expect-puppeteer","response":"success"},{"item":"expect.js","response":"success"},{"item":"expectations","response":"success"},{"item":"expired","response":"success"},{"item":"expired-storage","response":"success"},{"item":"expirymanager","response":"success"},{"item":"expo-mixpanel-analytics","response":"success"},{"item":"expo__status-bar-height","response":"success"},{"item":"expo__vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"express","response":"success"},{"item":"express-actuator","response":"success"},{"item":"express-async-wrap","response":"success"},{"item":"express-boom","response":"success"},{"item":"express-brute","response":"success"},{"item":"express-brute-memcached","response":"success"},{"item":"express-brute-mongo","response":"success"},{"item":"express-brute-redis","response":"success"},{"item":"express-bunyan-logger","response":"success"},{"item":"express-busboy","response":"success"},{"item":"express-cluster","response":"success"},{"item":"express-correlation-id","response":"success"},{"item":"express-debug","response":"success"},{"item":"express-domain-middleware","response":"success"},{"item":"express-ejs-layouts","response":"success"},{"item":"express-enforces-ssl","response":"success"},{"item":"express-fileupload","response":"success"},{"item":"express-flash","response":"success"},{"item":"express-flash-2","response":"success"},{"item":"express-flash-notification","response":"success"},{"item":"express-form-data","response":"success"},{"item":"express-formidable","response":"success"},{"item":"express-handlebars","response":"success"},{"item":"express-http-proxy","response":"success"},{"item":"express-jsonschema","response":"success"},{"item":"express-jwt","response":"success"},{"item":"express-less","response":"success"},{"item":"express-list-endpoints","response":"success"},{"item":"express-minify","response":"success"},{"item":"express-mongo-sanitize","response":"success"},{"item":"express-mung","response":"success"},{"item":"express-myconnection","response":"success"},{"item":"express-mysql-session","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-pino-logger","response":"success"},{"item":"express-rate-limit","response":"success"},{"item":"express-redis-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"express-request-id","response":"success"},{"item":"express-route-fs","response":"success"},{"item":"express-routemap","response":"success"},{"item":"express-routes-versioning","response":"success"},{"item":"express-sanitized","response":"success"},{"item":"express-serve-static-core","response":"success"},{"item":"express-session","response":"success"},{"item":"express-sitemap-xml","response":"success"},{"item":"express-slow-down","response":"success"},{"item":"express-socket.io-session","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/express-socket.io-session/index.d.ts(12,27): error TS2694: Namespace 'global.Express' has no exported member 'Session'.\n"},{"item":"express-sslify","response":"success"},{"item":"express-status-monitor","response":"success"},{"item":"express-to-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-unless","response":"success"},{"item":"express-urlrewrite","response":"success"},{"item":"express-useragent","response":"success"},{"item":"express-version-request","response":"success"},{"item":"express-version-route","response":"success"},{"item":"express-wechat-access","response":"success"},{"item":"express-ws","response":"success"},{"item":"express-ws-routes","response":"success"},{"item":"express-xml-bodyparser","response":"success"},{"item":"extend","response":"success"},{"item":"extjs","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"extra-watch-webpack-plugin","response":"success"},{"item":"extract-files","response":"success"},{"item":"extract-text-webpack-plugin","response":"success"},{"item":"extract-zip","response":"success"},{"item":"extsprintf","response":"success"},{"item":"eyes","response":"success"},{"item":"ez-plus","response":"success"},{"item":"f1","response":"success"},{"item":"fabric","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"facebook-instant-games","response":"success"},{"item":"facebook-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"facebook-locales","response":"success"},{"item":"facebook-pixel","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"facepaint","response":"success"},{"item":"factory-girl","response":"success"},{"item":"faker","response":"success"},{"item":"falafel","response":"success"},{"item":"falcor","response":"success"},{"item":"falcor-express","response":"success"},{"item":"falcor-http-datasource","response":"success"},{"item":"falcor-json-graph","response":"success"},{"item":"falcor-router","response":"success"},{"item":"famous","response":"success"},{"item":"fancy-log","response":"success"},{"item":"fancybox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"farbtastic","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"fast-chunk-string","response":"success"},{"item":"fast-html-parser","response":"success"},{"item":"fast-json-stable-stringify","response":"success"},{"item":"fast-levenshtein","response":"success"},{"item":"fast-list","response":"success"},{"item":"fast-memory-cache","response":"success"},{"item":"fast-ratelimit","response":"success"},{"item":"fast-shuffle","response":"success"},{"item":"fast-stats","response":"success"},{"item":"fast-text-encoding","response":"success"},{"item":"fast64","response":"success"},{"item":"fastbitset","response":"success"},{"item":"fastclick","response":"success"},{"item":"fastify-accepts","response":"success"},{"item":"fastify-favicon","response":"success"},{"item":"fastify-rate-limit","response":"success"},{"item":"favico.js","response":"success"},{"item":"favicons","response":"success"},{"item":"favicons-webpack-plugin","response":"success"},{"item":"fb-watchman","response":"success"},{"item":"fbemitter","response":"success"},{"item":"feather-icons","response":"success"},{"item":"feather-route-matcher","response":"success"},{"item":"featherlight","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__authentication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-client","response":"success"},{"item":"feathersjs__authentication-jwt","response":"success"},{"item":"feathersjs__authentication-local","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-oauth1","response":"success"},{"item":"feathersjs__authentication-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__configuration","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__errors","response":"success"},{"item":"feathersjs__express","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__feathers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n"},{"item":"feathersjs__primus","response":"success"},{"item":"feathersjs__primus-client","response":"success"},{"item":"feathersjs__rest-client","response":"success"},{"item":"feathersjs__socket-commons","response":"success"},{"item":"feathersjs__socketio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"feathersjs__socketio-client","response":"success"},{"item":"feedme","response":"success"},{"item":"feedparser","response":"success"},{"item":"fetch-jsonp","response":"success"},{"item":"fetch-mock","response":"success"},{"item":"fetch.io","response":"success"},{"item":"ffi","response":"success"},{"item":"ffi-napi","response":"success"},{"item":"ffmpeg","response":"success"},{"item":"ffmpeg-static","response":"success"},{"item":"ffmpeg.js","response":"success"},{"item":"ffprobe-static","response":"success"},{"item":"fhir","response":"success"},{"item":"fhir-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fhir-kit-client","response":"success"},{"item":"fibers","response":"success"},{"item":"fibjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/fibjs\n../DefinitelyTyped/types/fibjs/declare/assert.d.ts(789,11): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/fibjs/declare/console.d.ts(912,11): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/fibjs/declare/constants.d.ts(212,11): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(383,16): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(601,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(217,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(289,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dns.d.ts(234,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(238,16): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(672,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(214,16): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(314,16): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(508,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(76,8): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(78,8): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(81,8): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(83,8): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(85,8): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(87,8): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(88,8): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(247,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(391,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(222,16): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(476,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/path.d.ts(370,11): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/fibjs/declare/process.d.ts(556,11): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/fibjs/declare/punycode.d.ts(256,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/querystring.d.ts(262,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(215,16): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/timers.d.ts(330,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/tty.d.ts(223,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/url.d.ts(236,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/util.d.ts(983,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/vm.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/zlib.d.ts(520,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/node/assert.d.ts(52,14): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/node/console.d.ts(2,14): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/node/constants.d.ts(7,14): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/node/crypto.d.ts(204,11): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/node/dgram.d.ts(37,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/fs.d.ts(1670,15): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/node/globals.d.ts(143,13): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/node/globals.d.ts(147,13): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/node/globals.d.ts(148,13): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(181,15): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/node/http.d.ts(136,15): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(137,11): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(381,11): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/node/net.d.ts(56,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/os.d.ts(214,11): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/node/path.d.ts(152,14): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/node/process.d.ts(14,14): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/node/string_decoder.d.ts(2,11): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/node/ts3.2/globals.d.ts(10,11): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n"},{"item":"field","response":"success"},{"item":"figlet","response":"success"},{"item":"figma","response":"success"},{"item":"file-entry-cache","response":"success"},{"item":"file-exists","response":"success"},{"item":"file-loader","response":"success"},{"item":"file-saver","response":"success"},{"item":"file-size","response":"success"},{"item":"filesize-parser","response":"success"},{"item":"filesystem","response":"success"},{"item":"filewriter","response":"success"},{"item":"filing-cabinet","response":"success"},{"item":"fill-pdf","response":"success"},{"item":"filter-invalid-dom-props","response":"success"},{"item":"final-form-focus","response":"success"},{"item":"final-form-set-field-data","response":"success"},{"item":"final-form-set-field-touched","response":"success"},{"item":"finalhandler","response":"success"},{"item":"finch","response":"success"},{"item":"find","response":"success"},{"item":"find-cache-dir","response":"success"},{"item":"find-config","response":"success"},{"item":"find-down","response":"success"},{"item":"find-exec","response":"success"},{"item":"find-package-json","response":"success"},{"item":"find-parent-dir","response":"success"},{"item":"find-project-root","response":"success"},{"item":"find-root","response":"success"},{"item":"find-unused-sass-variables","response":"success"},{"item":"findup-sync","response":"success"},{"item":"fined","response":"success"},{"item":"fingerprintjs","response":"success"},{"item":"fingerprintjs2","response":"success"},{"item":"firebase-client","response":"success"},{"item":"firebase-token-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"firebird","response":"success"},{"item":"firefox","response":"success"},{"item":"firefox-webext-browser","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"firmata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"first-mate","response":"success"},{"item":"fixed-data-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"fixed-data-table-2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"flagged-respawn","response":"success"},{"item":"flake-idgen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flat","response":"success"},{"item":"flat-cache","response":"success"},{"item":"flatbuffers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"flatbush","response":"success"},{"item":"fleximap","response":"success"},{"item":"flexmonster","response":"success"},{"item":"flexslider","response":"success"},{"item":"flickity","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flight","response":"success"},{"item":"flightplan","response":"success"},{"item":"flipsnap","response":"success"},{"item":"float-equal","response":"success"},{"item":"float-regex","response":"success"},{"item":"flot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"flowdoc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\nnode_modules/typescript/lib/lib.dom.d.ts(4585,40): error TS2344: Type 'HTMLAnchorElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4658,39): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4703,38): error TS2344: Type 'HTMLAnchorElement | HTMLAreaElement' does not satisfy the constraint 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4725,40): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4737,40): error TS2344: Type 'HTMLScriptElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4961,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4962,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(5331,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(5332,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(6221,11): error TS2430: Interface 'HTMLAnchorElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6475,11): error TS2430: Interface 'HTMLButtonElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6767,11): error TS2430: Interface 'HTMLEmbedElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6801,11): error TS2430: Interface 'HTMLFieldSetElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7304,11): error TS2430: Interface 'HTMLInputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7508,11): error TS2430: Interface 'HTMLLIElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7568,11): error TS2430: Interface 'HTMLLinkElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7981,11): error TS2430: Interface 'HTMLOListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8002,11): error TS2430: Interface 'HTMLObjectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8216,11): error TS2430: Interface 'HTMLOutputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8260,11): error TS2430: Interface 'HTMLParamElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8365,11): error TS2430: Interface 'HTMLScriptElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8414,11): error TS2430: Interface 'HTMLSelectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8529,11): error TS2430: Interface 'HTMLSourceElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8569,11): error TS2430: Interface 'HTMLStyleElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8950,11): error TS2430: Interface 'HTMLTextAreaElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(9120,11): error TS2430: Interface 'HTMLUListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11589,87): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Node'.\n Type 'HTMLAnchorElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11590,86): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Node'.\n Type 'SVGScriptElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(13142,11): error TS2430: Interface 'SVGComponentTransferFunctionElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13323,11): error TS2430: Interface 'SVGFEColorMatrixElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13741,11): error TS2430: Interface 'SVGFETurbulenceElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(14639,11): error TS2430: Interface 'SVGScriptElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(14686,11): error TS2430: Interface 'SVGStyleElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\n"},{"item":"flowjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"fluent","response":"success"},{"item":"fluent-ffmpeg","response":"success"},{"item":"fluent-langneg","response":"success"},{"item":"fluent-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__bundle","response":"success"},{"item":"fluent__dedent","response":"success"},{"item":"fluent__langneg","response":"success"},{"item":"fluent__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__sequence","response":"success"},{"item":"flush-write-stream","response":"success"},{"item":"flushable","response":"success"},{"item":"flux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fluxible","response":"success"},{"item":"fluxible-addons-react","response":"success"},{"item":"fluxible-router","response":"success"},{"item":"fluxxor","response":"success"},{"item":"fm-websync","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fnando__sparkline","response":"success"},{"item":"fnv-lite","response":"success"},{"item":"focus-within","response":"success"},{"item":"follow-redirects","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"fontfaceobserver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"fontkit","response":"success"},{"item":"fontoxml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"force-graph","response":"success"},{"item":"forever-agent","response":"success"},{"item":"forever-monitor","response":"success"},{"item":"forge-apis","response":"success"},{"item":"forge-viewer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"form-serialize","response":"success"},{"item":"form-serializer","response":"success"},{"item":"form-urlencoded","response":"success"},{"item":"format-duration","response":"success"},{"item":"format-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"format-link-header","response":"success"},{"item":"format-unicorn","response":"success"},{"item":"format-util","response":"success"},{"item":"formidable","response":"success"},{"item":"formol","response":"success"},{"item":"forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"forwarded","response":"success"},{"item":"fossil-delta","response":"success"},{"item":"foundation","response":"success"},{"item":"fpsmeter","response":"success"},{"item":"framebus","response":"success"},{"item":"franc","response":"success"},{"item":"frappe-gantt","response":"success"},{"item":"frctl__fractal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n"},{"item":"frecency","response":"success"},{"item":"freedom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"freeport","response":"success"},{"item":"fresh","response":"success"},{"item":"freshy","response":"success"},{"item":"frida-gum","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/frida-gum/index.d.ts(2179,15): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5621,11): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5626,13): error TS2300: Duplicate identifier 'File'.\n"},{"item":"friendly-errors-webpack-plugin","response":"success"},{"item":"frisby","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"from","response":"success"},{"item":"from2","response":"success"},{"item":"fromjs","response":"success"},{"item":"fs-capacitor","response":"success"},{"item":"fs-cson","response":"success"},{"item":"fs-ext","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise-es6","response":"success"},{"item":"fs-finder","response":"success"},{"item":"fs-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fs-plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-readdir-recursive","response":"success"},{"item":"fs-readfile-promise","response":"success"},{"item":"fscreen","response":"success"},{"item":"ftdomdelegate","response":"success"},{"item":"ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ftpd","response":"success"},{"item":"ftps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fullcalendar__vue","response":"success"},{"item":"fullname","response":"success"},{"item":"fullpage.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"function-bind","response":"success"},{"item":"fundamental-react","response":"success"},{"item":"fusioncharts","response":"success"},{"item":"fuzzaldrin","response":"success"},{"item":"fuzzaldrin-plus","response":"success"},{"item":"fuzzy-search","response":"success"},{"item":"fuzzyset","response":"success"},{"item":"fuzzyset.js","response":"success"},{"item":"fxjs","response":"success"},{"item":"fxn","response":"success"},{"item":"gae.channel.api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gamedig","response":"success"},{"item":"gamepad","response":"success"},{"item":"gamequery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"gandi-livedns","response":"success"},{"item":"gapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.auth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.acceleratedmobilepageurl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangeseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexperiencereport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.admin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsense","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsensehost","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analyticsreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androiddeviceprovisioning","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidenterprise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidpublisher","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appengine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appsactivity","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appstate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquerydatatransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.blogger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.books","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.civicinfo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.classroom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbilling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbuild","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouddebugger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouderrorreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudfunctions","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudiot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudkms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudmonitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudresourcemanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtrace","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouduseraccounts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.compute","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.consumersurveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.container","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.content","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.customsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataproc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.deploymentmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dfareporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.discovery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dlp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclickbidmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclicksearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebasedynamiclinks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaseremoteconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaserules","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firestore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fitness","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fusiontables","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.games","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesconfiguration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.genomics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gmail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupsmigration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupssettings","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.iam","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.identitytoolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.kgsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.language","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.licensing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.logging","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.manufacturers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.mirror","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.ml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.monitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oauth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oslogin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.partners","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.photoslibrary","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playcustomapp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playmoviespartner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plusdomains","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.prediction","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.proximitybeacon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pubsub","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.qpxexpress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.reseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.resourceviews","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.runtimeconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.safebrowsing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.script","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.searchconsole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicecontrol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicemanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.serviceuser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sheets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.siteverification","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.slides","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sourcerepo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spectrum","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.speech","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sqladmin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storagetransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.streetviewpublish","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.surveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tagmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.taskqueue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.toolresults","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vault","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.videointelligence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vision","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webfonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webmasters","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubereporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gaussian","response":"success"},{"item":"gaze","response":"success"},{"item":"gc-stats","response":"success"},{"item":"gdal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"geetest","response":"success"},{"item":"gematriya","response":"success"},{"item":"gen-readlines","response":"success"},{"item":"generate-changelog","response":"success"},{"item":"generate-json-webpack-plugin","response":"success"},{"item":"generic-functions","response":"success"},{"item":"generic-pool","response":"success"},{"item":"gently","response":"success"},{"item":"geobuf","response":"success"},{"item":"geodesy","response":"success"},{"item":"geoflatbush","response":"success"},{"item":"geoip-lite","response":"success"},{"item":"geojson","response":"success"},{"item":"geojson2osm","response":"success"},{"item":"geokdbush","response":"success"},{"item":"geolite2","response":"success"},{"item":"geometry-dom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/geometry-dom/index.d.ts(236,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPointReadOnly' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPointReadOnly; prototype: DOMPointReadOnly; fromPoint(other?: DOMPointInit): DOMPointReadOnly; }', but here has type '{ new (x: number, y: number, z: number, w: number): DOMPointReadOnly; prototype: DOMPointReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(241,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPoint' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; fromPoint(other?: DOMPointInit): DOMPoint; }', but here has type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(250,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(254,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(265,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRect' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRect; prototype: DOMRect; fromRect(other?: DOMRectInit): DOMRect; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRect; prototype: DOMRect; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(270,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRectReadOnly' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly; prototype: DOMRectReadOnly; fromRect(other?: DOMRectInit): DOMRectReadOnly; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRectReadOnly; prototype: DOMRectReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(279,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(283,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(287,5): error TS2687: All declarations of 'width' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(291,5): error TS2687: All declarations of 'height' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(299,5): error TS2687: All declarations of 'length' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(307,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMQuad' must be of type '{ new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; fromQuad(other?: DOMQuadInit): DOMQuad; fromRect(other?: DOMRectInit): DOMQuad; }', but here has type '{ new (rect?: DOMRectInit): DOMQuad; new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(313,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrixReadOnly' must be of type '{ new (init?: string | number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly; fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly; fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly; toString(): string; }', but here has type '{ new (numberSequence: number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(318,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrix' must be of type '{ new (init?: string | number[]): DOMMatrix; prototype: DOMMatrix; fromFloat32Array(array32: Float32Array): DOMMatrix; fromFloat64Array(array64: Float64Array): DOMMatrix; fromMatrix(other?: DOMMatrixInit): DOMMatrix; }', but here has type '{ new (): DOMMatrix; new (transformList: string): DOMMatrix; new (other: DOMMatrixReadOnly): DOMMatrix; new (array: number[]): DOMMatrix; new (a: number, b: number, c: number, d: number, e: number, f: number): DOMMatrix; prototype: DOMMatrix; }'.\nnode_modules/typescript/lib/lib.dom.d.ts(348,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(349,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(361,5): error TS2687: All declarations of 'height' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(362,5): error TS2687: All declarations of 'width' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(363,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(364,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(4179,14): error TS2687: All declarations of 'length' must have identical modifiers.\n"},{"item":"geopattern","response":"success"},{"item":"geopoint","response":"success"},{"item":"gestalt","response":"success"},{"item":"get-caller-file","response":"success"},{"item":"get-certain","response":"success"},{"item":"get-emoji","response":"success"},{"item":"get-folder-size","response":"success"},{"item":"get-func-name","response":"success"},{"item":"get-node-dimensions","response":"success"},{"item":"get-res","response":"success"},{"item":"get-value","response":"success"},{"item":"getenv","response":"success"},{"item":"getos","response":"success"},{"item":"getpass","response":"success"},{"item":"gettext-parser","response":"success"},{"item":"gettext.js","response":"success"},{"item":"gfc","response":"success"},{"item":"gh-pages","response":"success"},{"item":"ghauth","response":"success"},{"item":"ghost-storage-base","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"gifffer","response":"success"},{"item":"gijgo","response":"success"},{"item":"giphy-api","response":"success"},{"item":"giraffe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"git","response":"success"},{"item":"git-add-remote","response":"success"},{"item":"git-branch","response":"success"},{"item":"git-branch-is","response":"success"},{"item":"git-config","response":"success"},{"item":"git-config-path","response":"success"},{"item":"git-raw-commits","response":"success"},{"item":"git-repo-name","response":"success"},{"item":"git-rev","response":"success"},{"item":"git-rev-sync","response":"success"},{"item":"git-revision-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"git-root-dir","response":"success"},{"item":"git-semver-tags","response":"success"},{"item":"git-url-parse","response":"success"},{"item":"git-user-email","response":"success"},{"item":"git-user-name","response":"success"},{"item":"git-username","response":"success"},{"item":"gitconfiglocal","response":"success"},{"item":"github-url-from-git","response":"success"},{"item":"github-url-to-object","response":"success"},{"item":"github-username-regex","response":"success"},{"item":"gl","response":"success"},{"item":"gl-fbo","response":"success"},{"item":"gl-matrix","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"gl-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of Parameter - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gl-react-dom","response":"success"},{"item":"gl-react-expo","response":"success"},{"item":"gl-react-headless","response":"success"},{"item":"gl-react-native","response":"success"},{"item":"gl-shader","response":"success"},{"item":"gl-texture2d","response":"success"},{"item":"gl-vec2","response":"success"},{"item":"gl-vec3","response":"success"},{"item":"gl-vec4","response":"success"},{"item":"gldatepicker","response":"success"},{"item":"glidejs","response":"success"},{"item":"glob","response":"success"},{"item":"glob-base","response":"success"},{"item":"glob-expand","response":"success"},{"item":"glob-parent","response":"success"},{"item":"glob-stream","response":"success"},{"item":"glob-to-regexp","response":"success"},{"item":"glob-watcher","response":"success"},{"item":"global-agent","response":"success"},{"item":"global-modules","response":"success"},{"item":"global-modules-path","response":"success"},{"item":"global-npm","response":"success"},{"item":"global-paths","response":"success"},{"item":"global-prefix","response":"success"},{"item":"global-tunnel-ng","response":"success"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize-compiler","response":"success"},{"item":"globalthis","response":"success"},{"item":"globjoin","response":"success"},{"item":"globule","response":"success"},{"item":"glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"gm","response":"success"},{"item":"go","response":"success"},{"item":"good-storage","response":"success"},{"item":"google-adwords-scripts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"google-apps-script","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/google-apps-script\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-apps-script-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-closure-compiler","response":"success"},{"item":"google-cloud__datastore","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-cloud__kms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-cloud__tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"google-cloud__text-to-speech","response":"success"},{"item":"google-ddns","response":"success"},{"item":"google-drive-realtime-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-earth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-fonts","response":"success"},{"item":"google-images","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-libphonenumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-map-react","response":"success"},{"item":"google-maps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-maps-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-protobuf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-translate-api","response":"success"},{"item":"google.analytics","response":"success"},{"item":"google.feeds","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.fonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.geolocation","response":"success"},{"item":"google.picker","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.script.client-side","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.visualization","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google__maps","response":"success"},{"item":"google__markerclustererplus","response":"success"},{"item":"googlemaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlemaps.infobubble","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlepay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"got","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"graceful-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gradient-string","response":"success"},{"item":"graham_scan","response":"success"},{"item":"gramps__rest-helpers","response":"success"},{"item":"graphite","response":"success"},{"item":"graphite-udp","response":"success"},{"item":"graphlib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"graphlib-dot","response":"success"},{"item":"graphql-api-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphql-bigint","response":"success"},{"item":"graphql-date","response":"success"},{"item":"graphql-deduplicator","response":"success"},{"item":"graphql-depth-limit","response":"success"},{"item":"graphql-errors","response":"success"},{"item":"graphql-fields","response":"success"},{"item":"graphql-iso-date","response":"success"},{"item":"graphql-list-fields","response":"success"},{"item":"graphql-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"graphql-relay","response":"success"},{"item":"graphql-resolve-batch","response":"success"},{"item":"graphql-resolvers","response":"success"},{"item":"graphql-type-json","response":"success"},{"item":"graphql-type-uuid","response":"success"},{"item":"graphql-upload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphviz","response":"success"},{"item":"grasp","response":"success"},{"item":"gravatar","response":"success"},{"item":"gray-percentage","response":"success"},{"item":"graylog2","response":"success"},{"item":"greasemonkey","response":"success"},{"item":"grecaptcha","response":"success"},{"item":"gregorian-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"gremlin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"grid-template-parser","response":"success"},{"item":"gridfs-stream","response":"success"},{"item":"group-array","response":"success"},{"item":"growing-io","response":"success"},{"item":"grpc-error","response":"success"},{"item":"grunt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"gsap","response":"success"},{"item":"gtag.js","response":"success"},{"item":"gtin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"guardian__prosemirror-invisibles","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"guid","response":"success"},{"item":"gulp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"gulp-angular-templatecache","response":"success"},{"item":"gulp-autoprefixer","response":"success"},{"item":"gulp-babel","response":"success"},{"item":"gulp-batch","response":"success"},{"item":"gulp-bump","response":"success"},{"item":"gulp-cache","response":"success"},{"item":"gulp-cached","response":"success"},{"item":"gulp-change","response":"success"},{"item":"gulp-changed","response":"success"},{"item":"gulp-cheerio","response":"success"},{"item":"gulp-clean-dest","response":"success"},{"item":"gulp-coffeeify","response":"success"},{"item":"gulp-coffeelint","response":"success"},{"item":"gulp-concat","response":"success"},{"item":"gulp-connect","response":"success"},{"item":"gulp-copy","response":"success"},{"item":"gulp-csso","response":"success"},{"item":"gulp-debug","response":"success"},{"item":"gulp-diff","response":"success"},{"item":"gulp-dtsm","response":"success"},{"item":"gulp-espower","response":"success"},{"item":"gulp-file-include","response":"success"},{"item":"gulp-filter","response":"success"},{"item":"gulp-flatten","response":"success"},{"item":"gulp-gh-pages","response":"success"},{"item":"gulp-gzip","response":"success"},{"item":"gulp-header","response":"success"},{"item":"gulp-help","response":"success"},{"item":"gulp-help-doc","response":"success"},{"item":"gulp-html-prettify","response":"success"},{"item":"gulp-html-replace","response":"success"},{"item":"gulp-htmlmin","response":"success"},{"item":"gulp-if","response":"success"},{"item":"gulp-image","response":"success"},{"item":"gulp-image-resize","response":"success"},{"item":"gulp-imagemin","response":"success"},{"item":"gulp-inject","response":"success"},{"item":"gulp-insert","response":"success"},{"item":"gulp-install","response":"success"},{"item":"gulp-intercept","response":"success"},{"item":"gulp-istanbul","response":"success"},{"item":"gulp-jade","response":"success"},{"item":"gulp-jasmine","response":"success"},{"item":"gulp-jasmine-browser","response":"success"},{"item":"gulp-json-editor","response":"success"},{"item":"gulp-json-validator","response":"success"},{"item":"gulp-jsonmin","response":"success"},{"item":"gulp-jsonminify","response":"success"},{"item":"gulp-jspm","response":"success"},{"item":"gulp-less","response":"success"},{"item":"gulp-load-plugins","response":"success"},{"item":"gulp-minify-css","response":"success"},{"item":"gulp-minify-html","response":"success"},{"item":"gulp-mocha","response":"success"},{"item":"gulp-modernizr","response":"success"},{"item":"gulp-msbuild","response":"success"},{"item":"gulp-mustache","response":"success"},{"item":"gulp-newer","response":"success"},{"item":"gulp-ng-annotate","response":"success"},{"item":"gulp-nodemon","response":"success"},{"item":"gulp-nunit-runner","response":"success"},{"item":"gulp-plumber","response":"success"},{"item":"gulp-postcss","response":"success"},{"item":"gulp-protractor","response":"success"},{"item":"gulp-pug-i18n","response":"success"},{"item":"gulp-remember","response":"success"},{"item":"gulp-rename","response":"success"},{"item":"gulp-replace","response":"success"},{"item":"gulp-responsive-images","response":"success"},{"item":"gulp-rev","response":"success"},{"item":"gulp-rev-replace","response":"success"},{"item":"gulp-ruby-sass","response":"success"},{"item":"gulp-sass","response":"success"},{"item":"gulp-sass-variables","response":"success"},{"item":"gulp-sequence","response":"success"},{"item":"gulp-size","response":"success"},{"item":"gulp-sort","response":"success"},{"item":"gulp-sourcemaps","response":"success"},{"item":"gulp-strip-comments","response":"success"},{"item":"gulp-strip-debug","response":"success"},{"item":"gulp-stylus","response":"success"},{"item":"gulp-svg-sprite","response":"success"},{"item":"gulp-svgmin","response":"success"},{"item":"gulp-tap","response":"success"},{"item":"gulp-task-listing","response":"success"},{"item":"gulp-template","response":"success"},{"item":"gulp-terser","response":"success"},{"item":"gulp-tsd","response":"success"},{"item":"gulp-uglify","response":"success"},{"item":"gulp-useref","response":"success"},{"item":"gulp-util","response":"success"},{"item":"gulp-watch","response":"success"},{"item":"gulp-zip","response":"success"},{"item":"gun","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"gyronorm","response":"success"},{"item":"gzip-js","response":"success"},{"item":"h2o2","response":"success"},{"item":"halfred","response":"success"},{"item":"halogen","response":"success"},{"item":"halogenium","response":"success"},{"item":"hammerjs","response":"success"},{"item":"handlebars-helpers","response":"success"},{"item":"hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi-auth-basic","response":"success"},{"item":"hapi-auth-bearer-token","response":"success"},{"item":"hapi-auth-cookie","response":"success"},{"item":"hapi-decorators","response":"success"},{"item":"hapi-pino","response":"success"},{"item":"hapi-server-session","response":"success"},{"item":"hapi__b64","response":"success"},{"item":"hapi__basic","response":"success"},{"item":"hapi__bell","response":"success"},{"item":"hapi__catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__catbox-memcached","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"hapi__catbox-memory","response":"success"},{"item":"hapi__catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"hapi__cookie","response":"success"},{"item":"hapi__crumb","response":"success"},{"item":"hapi__glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__h2o2","response":"success"},{"item":"hapi__hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__hawk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__inert","response":"success"},{"item":"hapi__joi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"hapi__mimos","response":"success"},{"item":"hapi__nes","response":"success"},{"item":"hapi__podium","response":"success"},{"item":"hapi__shot","response":"success"},{"item":"hapi__sntp","response":"success"},{"item":"hapi__vision","response":"success"},{"item":"hapi__yar","response":"success"},{"item":"happypack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"har-format","response":"success"},{"item":"hard-source-webpack-plugin","response":"success"},{"item":"hark","response":"success"},{"item":"harmon","response":"success"},{"item":"harmony-proxy","response":"success"},{"item":"has-ansi","response":"success"},{"item":"hash-file","response":"success"},{"item":"hash-it","response":"success"},{"item":"hash-stream","response":"success"},{"item":"hash-sum","response":"success"},{"item":"hasher","response":"success"},{"item":"hashids","response":"success"},{"item":"hashmap","response":"success"},{"item":"hashring","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"hashset","response":"success"},{"item":"hashtable","response":"success"},{"item":"hashtag-regex","response":"success"},{"item":"hast","response":"success"},{"item":"hat","response":"success"},{"item":"haversine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hdkey","response":"success"},{"item":"he","response":"success"},{"item":"headroom","response":"success"},{"item":"heap","response":"success"},{"item":"heapdump","response":"success"},{"item":"heatmap.js","response":"success"},{"item":"hedron","response":"success"},{"item":"hellojs","response":"success"},{"item":"hellosign-embedded","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"helmet","response":"success"},{"item":"heredatalens","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heremaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heroku-logger","response":"success"},{"item":"hex-rgba","response":"success"},{"item":"hexo","response":"success"},{"item":"hexo-bunyan","response":"success"},{"item":"hexo-fs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"hexo-log","response":"success"},{"item":"hexo-util","response":"success"},{"item":"hh-mm-ss","response":"success"},{"item":"hig__button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"highcharts-ng","response":"success"},{"item":"highland","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"highlight-words-core","response":"success"},{"item":"highlight.js","response":"success"},{"item":"highlightjs","response":"success"},{"item":"hiredis","response":"success"},{"item":"hirestime","response":"success"},{"item":"history","response":"success"},{"item":"history.js","response":"success"},{"item":"historykana","response":"success"},{"item":"hjson","response":"success"},{"item":"hls-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hls.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"hoek","response":"success"},{"item":"hogan.js","response":"success"},{"item":"hoist-non-react-statics","response":"success"},{"item":"holderjs","response":"success"},{"item":"honeybadger","response":"success"},{"item":"hooker","response":"success"},{"item":"hookrouter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hopscotch","response":"success"},{"item":"host-validation","response":"success"},{"item":"hosted-git-info","response":"success"},{"item":"hostile","response":"success"},{"item":"howler","response":"success"},{"item":"hoxy","response":"success"},{"item":"hpp","response":"success"},{"item":"html-entities","response":"success"},{"item":"html-minifier","response":"success"},{"item":"html-minifier-terser","response":"success"},{"item":"html-parser","response":"success"},{"item":"html-pdf","response":"success"},{"item":"html-tag-names","response":"success"},{"item":"html-to-draftjs","response":"success"},{"item":"html-to-text","response":"success"},{"item":"html-truncate","response":"success"},{"item":"html-validator","response":"success"},{"item":"html-void-elements","response":"success"},{"item":"html-webpack-plugin","response":"success"},{"item":"html-webpack-template","response":"success"},{"item":"html2canvas","response":"success"},{"item":"html5-history","response":"success"},{"item":"html5-to-pdf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"html5plus","response":"success"},{"item":"htmlbars-inline-precompile","response":"success"},{"item":"htmlescape","response":"success"},{"item":"htmlhint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"htmlparser2","response":"success"},{"item":"htmltojsx","response":"success"},{"item":"http-assert","response":"success"},{"item":"http-aws-es","response":"success"},{"item":"http-build-query","response":"success"},{"item":"http-cache-semantics","response":"success"},{"item":"http-codes","response":"success"},{"item":"http-context","response":"success"},{"item":"http-errors","response":"success"},{"item":"http-link-header","response":"success"},{"item":"http-proxy","response":"success"},{"item":"http-proxy-agent","response":"success"},{"item":"http-proxy-middleware","response":"success"},{"item":"http-rx","response":"success"},{"item":"http-server","response":"success"},{"item":"http-string-parser","response":"success"},{"item":"httperr","response":"success"},{"item":"hubot","response":"success"},{"item":"hubspot-pace","response":"success"},{"item":"human-date","response":"success"},{"item":"human-interval","response":"success"},{"item":"humane-js","response":"success"},{"item":"humanize-duration","response":"success"},{"item":"humanize-ms","response":"success"},{"item":"humanize-plus","response":"success"},{"item":"humanparser","response":"success"},{"item":"hummus-recipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"humps","response":"success"},{"item":"hyco-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"hyper-aws4","response":"success"},{"item":"hyperscript","response":"success"},{"item":"hypertext-application-language","response":"success"},{"item":"hystrixjs","response":"success"},{"item":"i18n","response":"success"},{"item":"i18n-abide","response":"success"},{"item":"i18n-js","response":"success"},{"item":"i18next-ko","response":"success"},{"item":"i18next-node-fs-backend","response":"success"},{"item":"i18next-sprintf-postprocessor","response":"success"},{"item":"i2c-bus","response":"success"},{"item":"iab-vpaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iarna__toml","response":"success"},{"item":"iban","response":"success"},{"item":"ibm-mobilefirst","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ibm-openapi-validator","response":"success"},{"item":"ibm_db","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ical","response":"success"},{"item":"icepick","response":"success"},{"item":"icheck","response":"success"},{"item":"icon-gen","response":"success"},{"item":"iconv","response":"success"},{"item":"icss-utils","response":"success"},{"item":"identicon.js","response":"success"},{"item":"idyll","response":"success"},{"item":"idyll-ast","response":"success"},{"item":"idyll-compiler","response":"success"},{"item":"idyll-document","response":"success"},{"item":"iferr","response":"success"},{"item":"iframe-resizer","response":"success"},{"item":"ifvisible","response":"success"},{"item":"igdb-api-node","response":"success"},{"item":"ignite-ui","response":"success"},{"item":"ignore-styles","response":"success"},{"item":"ignore-walk","response":"success"},{"item":"iltorb","response":"success"},{"item":"image-thumbnail","response":"success"},{"item":"imagemagick","response":"success"},{"item":"imagemagick-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imagemapster","response":"success"},{"item":"imagemin","response":"success"},{"item":"imagemin-gifsicle","response":"success"},{"item":"imagemin-jpegtran","response":"success"},{"item":"imagemin-mozjpeg","response":"success"},{"item":"imagemin-optipng","response":"success"},{"item":"imagemin-pngquant","response":"success"},{"item":"imagemin-svgo","response":"success"},{"item":"imagemin-webp","response":"success"},{"item":"images","response":"success"},{"item":"imagesloaded","response":"success"},{"item":"imap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"imap-simple","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imgur-rest-api","response":"success"},{"item":"immediate","response":"success"},{"item":"imperium","response":"success"},{"item":"impress","response":"success"},{"item":"imsi-grok","response":"success"},{"item":"imul","response":"success"},{"item":"imurmurhash","response":"success"},{"item":"in-app-purchase","response":"success"},{"item":"inboxsdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"incremental-dom","response":"success"},{"item":"indefinite","response":"success"},{"item":"inert","response":"success"},{"item":"ineum","response":"success"},{"item":"inflation","response":"success"},{"item":"inflected","response":"success"},{"item":"inflection","response":"success"},{"item":"infobox-parser","response":"success"},{"item":"inherits","response":"success"},{"item":"ini","response":"success"},{"item":"iniparser","response":"success"},{"item":"init-package-json","response":"success"},{"item":"ink-select-input","response":"success"},{"item":"ink-spinner","response":"success"},{"item":"ink-table","response":"success"},{"item":"ink-testing-library","response":"success"},{"item":"ink-text-input","response":"success"},{"item":"inline-critical","response":"success"},{"item":"inline-css","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"inline-style-prefixer","response":"success"},{"item":"input-moment","response":"success"},{"item":"inputmask","response":"success"},{"item":"inquirer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"inquirer-npm-name","response":"success"},{"item":"insert-css","response":"success"},{"item":"insert-module-globals","response":"success"},{"item":"insert-text-at-cursor","response":"success"},{"item":"insight","response":"success"},{"item":"inspectlet-es","response":"success"},{"item":"integer","response":"success"},{"item":"integrate-adaptive-simpson","response":"success"},{"item":"intercept-stdout","response":"success"},{"item":"intercom-client","response":"success"},{"item":"intercom-web","response":"success"},{"item":"intercomjs","response":"success"},{"item":"interface-datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"internal-slot","response":"success"},{"item":"interpret","response":"success"},{"item":"intersects","response":"success"},{"item":"intersperse","response":"success"},{"item":"intl","response":"success"},{"item":"intl-tel-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/intl-tel-input/index.d.ts(125,30): error TS2304: Cannot find name 'JQueryDeferred'.\n"},{"item":"intrinsic-scale","response":"success"},{"item":"intro.js","response":"success"},{"item":"invariant","response":"success"},{"item":"inversify-devtools","response":"success"},{"item":"iobroker","response":"success"},{"item":"ion-rangeslider","response":"success"},{"item":"iopipe__iopipe","response":"success"},{"item":"ioredis","response":"success"},{"item":"iost-contract","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/iost-contract"},{"item":"iota.lib.js","response":"success"},{"item":"ip","response":"success"},{"item":"ip-address","response":"success"},{"item":"ip-subnet-calculator","response":"success"},{"item":"ipcheck","response":"success"},{"item":"irc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iri","response":"success"},{"item":"iron","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"is","response":"success"},{"item":"is-absolute","response":"success"},{"item":"is-alphanumerical","response":"success"},{"item":"is-array","response":"success"},{"item":"is-base64","response":"success"},{"item":"is-blank","response":"success"},{"item":"is-buffer","response":"success"},{"item":"is-callable","response":"success"},{"item":"is-charging","response":"success"},{"item":"is-ci","response":"success"},{"item":"is-color","response":"success"},{"item":"is-date-object","response":"success"},{"item":"is-dotdir","response":"success"},{"item":"is-dotfile","response":"success"},{"item":"is-empty","response":"success"},{"item":"is-empty-object","response":"success"},{"item":"is-even","response":"success"},{"item":"is-finite","response":"success"},{"item":"is-function","response":"success"},{"item":"is-generator","response":"success"},{"item":"is-generator-function","response":"success"},{"item":"is-git-url","response":"success"},{"item":"is-glob","response":"success"},{"item":"is-hotkey","response":"success"},{"item":"is-integer","response":"success"},{"item":"is-my-json-valid","response":"success"},{"item":"is-natural-number","response":"success"},{"item":"is-negated-glob","response":"success"},{"item":"is-number","response":"success"},{"item":"is-number-like","response":"success"},{"item":"is-object","response":"success"},{"item":"is-odd","response":"success"},{"item":"is-progressive","response":"success"},{"item":"is-promise","response":"success"},{"item":"is-relative","response":"success"},{"item":"is-relative-path","response":"success"},{"item":"is-running","response":"success"},{"item":"is-ssh","response":"success"},{"item":"is-touch-device","response":"success"},{"item":"is-trademarked","response":"success"},{"item":"is-typedarray","response":"success"},{"item":"is-unc-path","response":"success"},{"item":"is-url","response":"success"},{"item":"is-uuid","response":"success"},{"item":"is-valid-glob","response":"success"},{"item":"is-valid-path","response":"success"},{"item":"is-windows","response":"success"},{"item":"isaac","response":"success"},{"item":"isarray","response":"success"},{"item":"isbn-utils","response":"success"},{"item":"iscroll","response":"success"},{"item":"isexe","response":"success"},{"item":"iso-3166-2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iso8601-localizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"isomorphic-fetch","response":"success"},{"item":"isomorphic-form-data","response":"success"},{"item":"isotope-layout","response":"success"},{"item":"isstream","response":"success"},{"item":"issue-parser","response":"success"},{"item":"istanbul","response":"success"},{"item":"istanbul-lib-coverage","response":"success"},{"item":"istanbul-lib-hook","response":"success"},{"item":"istanbul-lib-instrument","response":"success"},{"item":"istanbul-lib-report","response":"success"},{"item":"istanbul-lib-source-maps","response":"success"},{"item":"istanbul-middleware","response":"success"},{"item":"istanbul-reports","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"istextorbinary","response":"success"},{"item":"it-all","response":"success"},{"item":"it-pushable","response":"success"},{"item":"ityped","response":"success"},{"item":"ix.js","response":"success"},{"item":"jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"jade","response":"success"},{"item":"jaeger-client","response":"success"},{"item":"jake","response":"success"},{"item":"jalaali-js","response":"success"},{"item":"japan-postal-code","response":"success"},{"item":"japanese-holidays","response":"success"},{"item":"jasmine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'statements' of undefined\n"},{"item":"jasmine-ajax","response":"success"},{"item":"jasmine-data-provider","response":"success"},{"item":"jasmine-data_driven_tests","response":"success"},{"item":"jasmine-enzyme","response":"success"},{"item":"jasmine-es6-promise-matchers","response":"success"},{"item":"jasmine-fixture","response":"success"},{"item":"jasmine-given","response":"success"},{"item":"jasmine-jquery","response":"success"},{"item":"jasmine-matchers","response":"success"},{"item":"jasmine-node","response":"success"},{"item":"jasmine-promise-matchers","response":"success"},{"item":"jasmine_dom_matchers","response":"success"},{"item":"jasminewd2","response":"success"},{"item":"java","response":"success"},{"item":"java-applet","response":"success"},{"item":"javascript-astar","response":"success"},{"item":"javascript-bignum","response":"success"},{"item":"javascript-state-machine","response":"success"},{"item":"javascript-time-ago","response":"success"},{"item":"jbinary","response":"success"},{"item":"jcanvas","response":"success"},{"item":"jdataview","response":"success"},{"item":"jee-jsf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jenkins","response":"success"},{"item":"jest","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"jest-axe","response":"success"},{"item":"jest-cucumber-fusion","response":"success"},{"item":"jest-dev-server","response":"success"},{"item":"jest-environment-puppeteer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/environment/build/index.d.ts(11,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/jest-environment-puppeteer/node_modules/jest-mock/build/index\"' can only be default-imported using the 'esModuleInterop' flag\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/source-map/build/getCallsite.d.ts(8,100): error TS2503: Cannot find namespace 'callsites'.\n"},{"item":"jest-expect-message","response":"success"},{"item":"jest-image-snapshot","response":"success"},{"item":"jest-in-case","response":"success"},{"item":"jest-json-schema","response":"success"},{"item":"jest-matcher-one-of","response":"success"},{"item":"jest-plugin-context","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/jest-plugin-context"},{"item":"jest-plugin-set","response":"success"},{"item":"jest-sinon","response":"success"},{"item":"jest-specific-snapshot","response":"success"},{"item":"jest-when","response":"success"},{"item":"jexl","response":"success"},{"item":"jfp","response":"success"},{"item":"jfs","response":"success"},{"item":"jira-client","response":"success"},{"item":"jju","response":"success"},{"item":"jjv","response":"success"},{"item":"jjve","response":"success"},{"item":"jmespath","response":"success"},{"item":"johnny-five","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"joi","response":"success"},{"item":"joi-password-complexity","response":"success"},{"item":"joigoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"josa","response":"success"},{"item":"jotform-css.js","response":"success"},{"item":"jpeg-autorotate","response":"success"},{"item":"jpegtran-bin","response":"success"},{"item":"jpm","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jqgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jqrangeslider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-ajax-chain","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-alertable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-animate-scroll","response":"success"},{"item":"jquery-awesome-cursor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-backstretch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-countdown","response":"success"},{"item":"jquery-countto","response":"success"},{"item":"jquery-cropbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-cropper","response":"success"},{"item":"jquery-deferred","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery-deparam","response":"success"},{"item":"jquery-drawer","response":"success"},{"item":"jquery-easy-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-editable-select","response":"success"},{"item":"jquery-focus-exit","response":"success"},{"item":"jquery-focusable","response":"success"},{"item":"jquery-formatdatetime","response":"success"},{"item":"jquery-fullscreen","response":"success"},{"item":"jquery-galleria","response":"success"},{"item":"jquery-gray","response":"success"},{"item":"jquery-handsontable","response":"success"},{"item":"jquery-jcrop","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jquery-jsonrpcclient","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-knob","response":"success"},{"item":"jquery-lazyload","response":"success"},{"item":"jquery-loading-overlay","response":"success"},{"item":"jquery-mask-plugin","response":"success"},{"item":"jquery-maskmoney","response":"success"},{"item":"jquery-match-height","response":"success"},{"item":"jquery-migrate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mockjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mouse-exit","response":"success"},{"item":"jquery-mousewheel","response":"success"},{"item":"jquery-next-id","response":"success"},{"item":"jquery-param","response":"success"},{"item":"jquery-slimscroll","response":"success"},{"item":"jquery-slugify","response":"success"},{"item":"jquery-sortable","response":"success"},{"item":"jquery-steps","response":"success"},{"item":"jquery-sticky","response":"success"},{"item":"jquery-tags-input","response":"success"},{"item":"jquery-timeentry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toast-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toastmessage-plugin","response":"success"},{"item":"jquery-truncate-html","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-typeahead","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-urlparam","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-validation-unobtrusive","response":"success"},{"item":"jquery.address","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.appear","response":"success"},{"item":"jquery.are-you-sure","response":"success"},{"item":"jquery.autosize","response":"success"},{"item":"jquery.base64","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bbq","response":"success"},{"item":"jquery.blockui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bootstrap.wizard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.browser","response":"success"},{"item":"jquery.cleditor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.clientsidelogging","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorpicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.contextmenu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.cookie","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.customselect","response":"success"},{"item":"jquery.cycle","response":"success"},{"item":"jquery.cycle2","response":"success"},{"item":"jquery.dropotron","response":"success"},{"item":"jquery.dynatree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.elang","response":"success"},{"item":"jquery.fancytree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fileupload","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.filtertable","response":"success"},{"item":"jquery.finger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.flagstrap","response":"success"},{"item":"jquery.form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fullscreen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.gridster","response":"success"},{"item":"jquery.growl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"jquery.highlight-bartaz","response":"success"},{"item":"jquery.jnotify","response":"success"},{"item":"jquery.joyride","response":"success"},{"item":"jquery.jsignature","response":"success"},{"item":"jquery.leanmodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.livestampjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery.menuaim","response":"success"},{"item":"jquery.mmenu","response":"success"},{"item":"jquery.nicescroll","response":"success"},{"item":"jquery.notify","response":"success"},{"item":"jquery.notifybar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.noty","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'kind' of undefined\n"},{"item":"jquery.payment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.pin","response":"success"},{"item":"jquery.pjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.placeholder","response":"success"},{"item":"jquery.pnotify","response":"success"},{"item":"jquery.postmessage","response":"success"},{"item":"jquery.prettyphoto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.qrcode","response":"success"},{"item":"jquery.rateit","response":"success"},{"item":"jquery.rowgrid","response":"success"},{"item":"jquery.scrollto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplemodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplepagination","response":"success"},{"item":"jquery.simulate","response":"success"},{"item":"jquery.soap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.sortelements","response":"success"},{"item":"jquery.stickem","response":"success"},{"item":"jquery.superlink","response":"success"},{"item":"jquery.tagsmanager","response":"success"},{"item":"jquery.tile","response":"success"},{"item":"jquery.timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.tinycarousel","response":"success"},{"item":"jquery.tinyscrollbar","response":"success"},{"item":"jquery.tipsy","response":"success"},{"item":"jquery.tools","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.total-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.transit","response":"success"},{"item":"jquery.ui.datetimepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.ui.layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.uniform","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.validation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.watermark","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquerymobile","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jqueryui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"js-base64","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"js-beautify","response":"success"},{"item":"js-captcha","response":"success"},{"item":"js-clipper","response":"success"},{"item":"js-combinatorics","response":"success"},{"item":"js-cookie","response":"success"},{"item":"js-data-angular","response":"success"},{"item":"js-fixtures","response":"success"},{"item":"js-git","response":"success"},{"item":"js-levenshtein","response":"success"},{"item":"js-md5","response":"success"},{"item":"js-money","response":"success"},{"item":"js-nacl","response":"success"},{"item":"js-priority-queue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"js-quantities","response":"success"},{"item":"js-roman-numerals","response":"success"},{"item":"js-schema","response":"success"},{"item":"js-search","response":"success"},{"item":"js-sha512","response":"success"},{"item":"js-string-escape","response":"success"},{"item":"js-to-java","response":"success"},{"item":"js-url","response":"success"},{"item":"js-yaml","response":"success"},{"item":"js.spec","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsbn","response":"success"},{"item":"jschannel","response":"success"},{"item":"jscodeshift","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"jscrollpane","response":"success"},{"item":"jsdeferred","response":"success"},{"item":"jsdoc-to-markdown","response":"success"},{"item":"jsdom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsdom-global","response":"success"},{"item":"jsen","response":"success"},{"item":"jsend","response":"success"},{"item":"jsesc","response":"success"},{"item":"jsfl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'kind' of undefined\n"},{"item":"jsforce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsftp","response":"success"},{"item":"jsgraph","response":"success"},{"item":"jshamcrest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsmediatags","response":"success"},{"item":"jsmockito","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsnox","response":"success"},{"item":"json-buffer","response":"success"},{"item":"json-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"json-file-plus","response":"success"},{"item":"json-form-data","response":"success"},{"item":"json-js","response":"success"},{"item":"json-merge-patch","response":"success"},{"item":"json-parse-better-errors","response":"success"},{"item":"json-patch","response":"success"},{"item":"json-patch-gen","response":"success"},{"item":"json-pointer","response":"success"},{"item":"json-query","response":"success"},{"item":"json-rpc-random-id","response":"success"},{"item":"json-rpc-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"json-schema","response":"success"},{"item":"json-schema-compare","response":"success"},{"item":"json-schema-merge-allof","response":"success"},{"item":"json-schema-traverse","response":"success"},{"item":"json-server","response":"success"},{"item":"json-socket","response":"success"},{"item":"json-stable-stringify","response":"success"},{"item":"json-stream-stringify","response":"success"},{"item":"json-stringify-safe","response":"success"},{"item":"json-to-ast","response":"success"},{"item":"json2csv","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"json2md","response":"success"},{"item":"json2mq","response":"success"},{"item":"json3","response":"success"},{"item":"json5","response":"success"},{"item":"json8-patch","response":"success"},{"item":"json_ml","response":"success"},{"item":"jsonabc","response":"success"},{"item":"jsonapi-serializer","response":"success"},{"item":"jsoneditor","response":"success"},{"item":"jsoneditor-for-react","response":"success"},{"item":"jsoneditoronline","response":"success"},{"item":"jsonfile","response":"success"},{"item":"jsonic","response":"success"},{"item":"jsonld","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonminify","response":"success"},{"item":"jsonnet","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsonp","response":"success"},{"item":"jsonpack","response":"success"},{"item":"jsonpath","response":"success"},{"item":"jsonpointer","response":"success"},{"item":"jsonquery","response":"success"},{"item":"jsonrpc-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonstream","response":"success"},{"item":"jsontoxml","response":"success"},{"item":"jsonwebtoken","response":"success"},{"item":"jsonwebtoken-promisified","response":"success"},{"item":"jspath","response":"success"},{"item":"jspdf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsprintmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsqrcode","response":"success"},{"item":"jsqubits","response":"success"},{"item":"jsreport-chrome-pdf","response":"success"},{"item":"jsreport-core","response":"success"},{"item":"jsreport-html-embedded-in-docx","response":"success"},{"item":"jsreport-html-to-xlsx","response":"success"},{"item":"jsreport-jsrender","response":"success"},{"item":"jsreport-phantom-pdf","response":"success"},{"item":"jsreport-xlsx","response":"success"},{"item":"jsrp","response":"success"},{"item":"jsrsasign","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jssha","response":"success"},{"item":"jssip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsspec__jsspec","response":"success"},{"item":"jstimezonedetect","response":"success"},{"item":"jstorage","response":"success"},{"item":"jstree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsuite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsum","response":"success"},{"item":"jsuri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"jsurl","response":"success"},{"item":"jsx-chai","response":"success"},{"item":"jszip","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"jug","response":"success"},{"item":"jui","response":"success"},{"item":"jui-core","response":"success"},{"item":"jui-grid","response":"success"},{"item":"jump.js","response":"success"},{"item":"just-clone","response":"success"},{"item":"just-debounce-it","response":"success"},{"item":"just-extend","response":"success"},{"item":"just-map-values","response":"success"},{"item":"just-pick","response":"success"},{"item":"just-safe-get","response":"success"},{"item":"just-safe-set","response":"success"},{"item":"just-snake-case","response":"success"},{"item":"just-throttle","response":"success"},{"item":"jweixin","response":"success"},{"item":"jwk-to-pem","response":"success"},{"item":"jwplayer","response":"success"},{"item":"jws","response":"success"},{"item":"jwt-client","response":"success"},{"item":"jwt-decode","response":"success"},{"item":"jwt-express","response":"success"},{"item":"jwt-simple","response":"success"},{"item":"jwt-then","response":"success"},{"item":"jxon","response":"success"},{"item":"k6","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\n\n../DefinitelyTyped/types/k6/global.d.ts(53,9): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\nnode_modules/typescript/lib/lib.dom.d.ts(19729,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n"},{"item":"kafka-node-avro","response":"success"},{"item":"kamailio-kemi","response":"success"},{"item":"kap-plugin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"karma","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"karma-brief-reporter","response":"success"},{"item":"karma-browserify","response":"success"},{"item":"karma-browserstack-launcher","response":"success"},{"item":"karma-chai","response":"success"},{"item":"karma-chai-sinon","response":"success"},{"item":"karma-chrome-launcher","response":"success"},{"item":"karma-coverage","response":"success"},{"item":"karma-coverage-istanbul-reporter","response":"success"},{"item":"karma-detect-browsers","response":"success"},{"item":"karma-env-preprocessor","response":"success"},{"item":"karma-firefox-launcher","response":"success"},{"item":"karma-fixture","response":"success"},{"item":"karma-html-detailed-reporter","response":"success"},{"item":"karma-ie-launcher","response":"success"},{"item":"karma-jasmine","response":"success"},{"item":"karma-jasmine-html-reporter","response":"success"},{"item":"karma-jasmine-spec-tags","response":"success"},{"item":"karma-jsdom-launcher","response":"success"},{"item":"karma-json-preprocessor","response":"success"},{"item":"karma-json-to-file-reporter","response":"success"},{"item":"karma-junit-reporter","response":"success"},{"item":"karma-material-reporter","response":"success"},{"item":"karma-mocha","response":"success"},{"item":"karma-mocha-reporter","response":"success"},{"item":"karma-parallel","response":"success"},{"item":"karma-remap-coverage","response":"success"},{"item":"karma-snapshot","response":"success"},{"item":"karma-spec-reporter","response":"success"},{"item":"karma-summary-reporter","response":"success"},{"item":"karma-webpack","response":"success"},{"item":"katex","response":"success"},{"item":"kcors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"kd-tree-javascript","response":"success"},{"item":"kdbush","response":"success"},{"item":"kdbxweb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"keen-tracking","response":"success"},{"item":"kefir","response":"success"},{"item":"kendo-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"kerberos","response":"success"},{"item":"keyboardjs","response":"success"},{"item":"keycloak-connect","response":"success"},{"item":"keygrip","response":"success"},{"item":"keymaster","response":"success"},{"item":"keymirror","response":"success"},{"item":"keypress.js","response":"success"},{"item":"keystonejs__adapter-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"keystonejs__adapter-mongoose","response":"success"},{"item":"keystonejs__apollo-helpers","response":"success"},{"item":"keystonejs__app-admin-ui","response":"success"},{"item":"keystonejs__app-graphql","response":"success"},{"item":"keystonejs__app-next","response":"success"},{"item":"keystonejs__app-nuxt","response":"success"},{"item":"keystonejs__app-static","response":"success"},{"item":"keystonejs__auth-passport","response":"success"},{"item":"keystonejs__auth-password","response":"success"},{"item":"keystonejs__email","response":"success"},{"item":"keystonejs__fields","response":"success"},{"item":"keystonejs__file-adapters","response":"success"},{"item":"keystonejs__keystone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"keystonejs__list-plugins","response":"success"},{"item":"keystonejs__logger","response":"success"},{"item":"keystonejs__oembed-adapters","response":"success"},{"item":"keystonejs__session","response":"success"},{"item":"keysym","response":"success"},{"item":"keyv","response":"success"},{"item":"keyv__mongo","response":"success"},{"item":"keyv__mysql","response":"success"},{"item":"keyv__postgres","response":"success"},{"item":"keyv__redis","response":"success"},{"item":"keyv__sqlite","response":"success"},{"item":"kii-cloud-sdk","response":"success"},{"item":"kik-browser","response":"success"},{"item":"kind-of","response":"success"},{"item":"kineticjs","response":"success"},{"item":"kissfft-js","response":"success"},{"item":"kiwicom__orbit-design-tokens","response":"success"},{"item":"klaw","response":"success"},{"item":"klaw-sync","response":"success"},{"item":"kms-json","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"knex-db-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knex-postgis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knockback","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'kind' of undefined\n"},{"item":"knockout","response":"success"},{"item":"knockout-amd-helpers","response":"success"},{"item":"knockout-postbox","response":"success"},{"item":"knockout-secure-binding","response":"success"},{"item":"knockout-transformations","response":"success"},{"item":"knockout.deferred.updates","response":"success"},{"item":"knockout.editables","response":"success"},{"item":"knockout.es5","response":"success"},{"item":"knockout.kogrid","response":"success"},{"item":"knockout.mapper","response":"success"},{"item":"knockout.mapping","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"knockout.projections","response":"success"},{"item":"knockout.punches","response":"success"},{"item":"knockout.rx","response":"success"},{"item":"knockout.validation","response":"success"},{"item":"knockout.viewmodel","response":"success"},{"item":"knockstrap","response":"success"},{"item":"knuddels-userapps-api","response":"success"},{"item":"knuth-shuffle","response":"success"},{"item":"ko.plus","response":"success"},{"item":"koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-basic-auth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bodyparser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bouncer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bunyan-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cache-control","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-conditional-get","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-csrf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-dec-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"koa-docs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ejs","response":"success"},{"item":"koa-etag","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-favicon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-generic-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-graphql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-helmet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-json-error","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log4","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger-winston","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-morgan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-mount","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-passport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"koa-pino-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-qs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit-lru","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-redis","response":"success"},{"item":"koa-redis-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-response-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-route","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"koa-send","response":"success"},{"item":"koa-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-session-minimal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-sslify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-views","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-webpack","response":"success"},{"item":"koa-websocket","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-xml-body","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-session-redis","response":"success"},{"item":"koa__cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"koji-tools","response":"success"},{"item":"kolite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/kolite"},{"item":"kompression","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"konami.js","response":"success"},{"item":"kos-core","response":"success"},{"item":"kraken-js","response":"success"},{"item":"kramed","response":"success"},{"item":"kss","response":"success"},{"item":"kue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"kue-ui-client","response":"success"},{"item":"kurento-client","response":"success"},{"item":"kurento-utils","response":"success"},{"item":"kuromoji","response":"success"},{"item":"kythe","response":"success"},{"item":"lab","response":"success"},{"item":"labeled-stream-splicer","response":"success"},{"item":"lambda-log","response":"success"},{"item":"lambda-tester","response":"success"},{"item":"lambda-wrapper","response":"success"},{"item":"lang.js","response":"success"},{"item":"langmap","response":"success"},{"item":"lasso","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"later","response":"success"},{"item":"latinize","response":"success"},{"item":"latlon-geohash","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"launchpad","response":"success"},{"item":"layui-layer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"layzr.js","response":"success"},{"item":"lazy-brush","response":"success"},{"item":"lazy-property","response":"success"},{"item":"lazy.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lazypipe","response":"success"},{"item":"ldap-filters","response":"success"},{"item":"ldapjs","response":"success"},{"item":"ldapjs-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leadfoot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"leaflet-areaselect","response":"success"},{"item":"leaflet-curve","response":"success"},{"item":"leaflet-deepzoom","response":"success"},{"item":"leaflet-draw","response":"success"},{"item":"leaflet-editable","response":"success"},{"item":"leaflet-fullscreen","response":"success"},{"item":"leaflet-geocoder-mapzen","response":"success"},{"item":"leaflet-geosearch","response":"success"},{"item":"leaflet-gpx","response":"success"},{"item":"leaflet-groupedlayercontrol","response":"success"},{"item":"leaflet-imageoverlay-rotated","response":"success"},{"item":"leaflet-label","response":"success"},{"item":"leaflet-loading","response":"success"},{"item":"leaflet-mouse-position","response":"success"},{"item":"leaflet-polylinedecorator","response":"success"},{"item":"leaflet-providers","response":"success"},{"item":"leaflet-rastercoords","response":"success"},{"item":"leaflet-responsive-popup","response":"success"},{"item":"leaflet-rotatedmarker","response":"success"},{"item":"leaflet-routing-machine","response":"success"},{"item":"leaflet.awesome-markers","response":"success"},{"item":"leaflet.featuregroup.subgroup","response":"success"},{"item":"leaflet.fullscreen","response":"success"},{"item":"leaflet.gridlayer.googlemutant","response":"success"},{"item":"leaflet.heat","response":"success"},{"item":"leaflet.icon.glyph","response":"success"},{"item":"leaflet.locatecontrol","response":"success"},{"item":"leaflet.markercluster","response":"success"},{"item":"leaflet.markercluster.layersupport","response":"success"},{"item":"leaflet.pancontrol","response":"success"},{"item":"leaflet.pm","response":"success"},{"item":"leaflet.polylinemeasure","response":"success"},{"item":"leaflet.utm","response":"success"},{"item":"leakage","response":"success"},{"item":"leapmotionts","response":"success"},{"item":"ledgerhq__hw-transport","response":"success"},{"item":"ledgerhq__hw-transport-node-hid","response":"success"},{"item":"ledgerhq__hw-transport-u2f","response":"success"},{"item":"ledgerhq__hw-transport-webusb","response":"success"},{"item":"legal-eagle","response":"success"},{"item":"lerna-alias","response":"success"},{"item":"lerna-get-packages","response":"success"},{"item":"less","response":"success"},{"item":"less-middleware","response":"success"},{"item":"less2sass","response":"success"},{"item":"lestate","response":"success"},{"item":"level-codec","response":"success"},{"item":"level-js","response":"success"},{"item":"level-sublevel","response":"success"},{"item":"level-ttl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"leveldown","response":"success"},{"item":"levelup","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"levenshtein","response":"success"},{"item":"lexicographic-integer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"libnpmsearch","response":"success"},{"item":"libpq","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"libqp","response":"success"},{"item":"librato-node","response":"success"},{"item":"libsodium-wrappers","response":"success"},{"item":"libsodium-wrappers-sumo","response":"success"},{"item":"libxmljs","response":"success"},{"item":"libxslt","response":"success"},{"item":"license-checker","response":"success"},{"item":"license-checker-webpack-plugin","response":"success"},{"item":"lifeomic__axios-fetch","response":"success"},{"item":"liftoff","response":"success"},{"item":"light-sdk","response":"success"},{"item":"lightpick","response":"success"},{"item":"lightship","response":"success"},{"item":"lil-uri","response":"success"},{"item":"lil-uuid","response":"success"},{"item":"lime-js","response":"success"},{"item":"line-by-line","response":"success"},{"item":"line-column","response":"success"},{"item":"line-reader","response":"success"},{"item":"linear-gradient","response":"success"},{"item":"lingui__core","response":"success"},{"item":"lingui__macro","response":"success"},{"item":"lingui__react","response":"success"},{"item":"linkify-it","response":"success"},{"item":"linkifyjs","response":"success"},{"item":"list-git-remotes","response":"success"},{"item":"list-stream","response":"success"},{"item":"list.js","response":"success"},{"item":"listr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"little-loader","response":"success"},{"item":"lls","response":"success"},{"item":"load-google-maps-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"loadable__component","response":"success"},{"item":"loadable__server","response":"success"},{"item":"loadable__webpack-plugin","response":"success"},{"item":"loader-runner","response":"success"},{"item":"loader-utils","response":"success"},{"item":"loadicons","response":"success"},{"item":"loadjs","response":"success"},{"item":"loadware","response":"success"},{"item":"lobibox","response":"success"},{"item":"local-dynamo","response":"success"},{"item":"local-storage","response":"success"},{"item":"locale","response":"success"},{"item":"localized-countries","response":"success"},{"item":"localizejs-library","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"localtunnel","response":"success"},{"item":"lockfile","response":"success"},{"item":"lockr","response":"success"},{"item":"locks","response":"success"},{"item":"locutus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lodash","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash-deep","response":"success"},{"item":"lodash-es","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n"},{"item":"lodash-webpack-plugin","response":"success"},{"item":"lodash.add","response":"success"},{"item":"lodash.after","response":"success"},{"item":"lodash.ary","response":"success"},{"item":"lodash.assign","response":"success"},{"item":"lodash.assignin","response":"success"},{"item":"lodash.assigninwith","response":"success"},{"item":"lodash.assignwith","response":"success"},{"item":"lodash.at","response":"success"},{"item":"lodash.attempt","response":"success"},{"item":"lodash.before","response":"success"},{"item":"lodash.bind","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.bindall","response":"success"},{"item":"lodash.bindkey","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.camelcase","response":"success"},{"item":"lodash.capitalize","response":"success"},{"item":"lodash.castarray","response":"success"},{"item":"lodash.ceil","response":"success"},{"item":"lodash.chunk","response":"success"},{"item":"lodash.clamp","response":"success"},{"item":"lodash.clone","response":"success"},{"item":"lodash.clonedeep","response":"success"},{"item":"lodash.clonedeepwith","response":"success"},{"item":"lodash.clonewith","response":"success"},{"item":"lodash.compact","response":"success"},{"item":"lodash.concat","response":"success"},{"item":"lodash.cond","response":"success"},{"item":"lodash.constant","response":"success"},{"item":"lodash.countby","response":"success"},{"item":"lodash.create","response":"success"},{"item":"lodash.curry","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.curryright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.debounce","response":"success"},{"item":"lodash.deburr","response":"success"},{"item":"lodash.defaults","response":"success"},{"item":"lodash.defaultsdeep","response":"success"},{"item":"lodash.defer","response":"success"},{"item":"lodash.delay","response":"success"},{"item":"lodash.difference","response":"success"},{"item":"lodash.differenceby","response":"success"},{"item":"lodash.differencewith","response":"success"},{"item":"lodash.divide","response":"success"},{"item":"lodash.drop","response":"success"},{"item":"lodash.dropright","response":"success"},{"item":"lodash.droprightwhile","response":"success"},{"item":"lodash.dropwhile","response":"success"},{"item":"lodash.endswith","response":"success"},{"item":"lodash.eq","response":"success"},{"item":"lodash.escape","response":"success"},{"item":"lodash.escaperegexp","response":"success"},{"item":"lodash.every","response":"success"},{"item":"lodash.fill","response":"success"},{"item":"lodash.filter","response":"success"},{"item":"lodash.find","response":"success"},{"item":"lodash.findindex","response":"success"},{"item":"lodash.findkey","response":"success"},{"item":"lodash.findlast","response":"success"},{"item":"lodash.findlastindex","response":"success"},{"item":"lodash.findlastkey","response":"success"},{"item":"lodash.first","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.flatmap","response":"success"},{"item":"lodash.flatmapdeep","response":"success"},{"item":"lodash.flatmapdepth","response":"success"},{"item":"lodash.flatten","response":"success"},{"item":"lodash.flattendeep","response":"success"},{"item":"lodash.flattendepth","response":"success"},{"item":"lodash.flip","response":"success"},{"item":"lodash.floor","response":"success"},{"item":"lodash.flow","response":"success"},{"item":"lodash.flowright","response":"success"},{"item":"lodash.foreach","response":"success"},{"item":"lodash.foreachright","response":"success"},{"item":"lodash.forin","response":"success"},{"item":"lodash.forinright","response":"success"},{"item":"lodash.forown","response":"success"},{"item":"lodash.forownright","response":"success"},{"item":"lodash.frompairs","response":"success"},{"item":"lodash.functions","response":"success"},{"item":"lodash.functionsin","response":"success"},{"item":"lodash.get","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash.groupby","response":"success"},{"item":"lodash.gt","response":"success"},{"item":"lodash.gte","response":"success"},{"item":"lodash.has","response":"success"},{"item":"lodash.hasin","response":"success"},{"item":"lodash.head","response":"success"},{"item":"lodash.identity","response":"success"},{"item":"lodash.includes","response":"success"},{"item":"lodash.indexof","response":"success"},{"item":"lodash.initial","response":"success"},{"item":"lodash.inrange","response":"success"},{"item":"lodash.intersection","response":"success"},{"item":"lodash.intersectionby","response":"success"},{"item":"lodash.intersectionwith","response":"success"},{"item":"lodash.invert","response":"success"},{"item":"lodash.invertby","response":"success"},{"item":"lodash.invoke","response":"success"},{"item":"lodash.invokemap","response":"success"},{"item":"lodash.isarguments","response":"success"},{"item":"lodash.isarray","response":"success"},{"item":"lodash.isarraybuffer","response":"success"},{"item":"lodash.isarraylike","response":"success"},{"item":"lodash.isarraylikeobject","response":"success"},{"item":"lodash.isboolean","response":"success"},{"item":"lodash.isbuffer","response":"success"},{"item":"lodash.isdate","response":"success"},{"item":"lodash.iselement","response":"success"},{"item":"lodash.isempty","response":"success"},{"item":"lodash.isequal","response":"success"},{"item":"lodash.isequalwith","response":"success"},{"item":"lodash.iserror","response":"success"},{"item":"lodash.isfinite","response":"success"},{"item":"lodash.isfunction","response":"success"},{"item":"lodash.isinteger","response":"success"},{"item":"lodash.islength","response":"success"},{"item":"lodash.ismap","response":"success"},{"item":"lodash.ismatch","response":"success"},{"item":"lodash.ismatchwith","response":"success"},{"item":"lodash.isnan","response":"success"},{"item":"lodash.isnative","response":"success"},{"item":"lodash.isnil","response":"success"},{"item":"lodash.isnull","response":"success"},{"item":"lodash.isnumber","response":"success"},{"item":"lodash.isobject","response":"success"},{"item":"lodash.isobjectlike","response":"success"},{"item":"lodash.isplainobject","response":"success"},{"item":"lodash.isregexp","response":"success"},{"item":"lodash.issafeinteger","response":"success"},{"item":"lodash.isset","response":"success"},{"item":"lodash.isstring","response":"success"},{"item":"lodash.issymbol","response":"success"},{"item":"lodash.istypedarray","response":"success"},{"item":"lodash.isundefined","response":"success"},{"item":"lodash.isweakmap","response":"success"},{"item":"lodash.isweakset","response":"success"},{"item":"lodash.iteratee","response":"success"},{"item":"lodash.join","response":"success"},{"item":"lodash.kebabcase","response":"success"},{"item":"lodash.keyby","response":"success"},{"item":"lodash.keys","response":"success"},{"item":"lodash.keysin","response":"success"},{"item":"lodash.last","response":"success"},{"item":"lodash.lastindexof","response":"success"},{"item":"lodash.lowercase","response":"success"},{"item":"lodash.lowerfirst","response":"success"},{"item":"lodash.lt","response":"success"},{"item":"lodash.lte","response":"success"},{"item":"lodash.mapkeys","response":"success"},{"item":"lodash.mapvalues","response":"success"},{"item":"lodash.matches","response":"success"},{"item":"lodash.matchesproperty","response":"success"},{"item":"lodash.max","response":"success"},{"item":"lodash.maxby","response":"success"},{"item":"lodash.mean","response":"success"},{"item":"lodash.meanby","response":"success"},{"item":"lodash.memoize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.merge","response":"success"},{"item":"lodash.mergewith","response":"success"},{"item":"lodash.method","response":"success"},{"item":"lodash.methodof","response":"success"},{"item":"lodash.min","response":"success"},{"item":"lodash.minby","response":"success"},{"item":"lodash.mixin","response":"success"},{"item":"lodash.multiply","response":"success"},{"item":"lodash.negate","response":"success"},{"item":"lodash.noop","response":"success"},{"item":"lodash.now","response":"success"},{"item":"lodash.nth","response":"success"},{"item":"lodash.ntharg","response":"success"},{"item":"lodash.omit","response":"success"},{"item":"lodash.omitby","response":"success"},{"item":"lodash.once","response":"success"},{"item":"lodash.orderby","response":"success"},{"item":"lodash.over","response":"success"},{"item":"lodash.overargs","response":"success"},{"item":"lodash.overevery","response":"success"},{"item":"lodash.oversome","response":"success"},{"item":"lodash.pad","response":"success"},{"item":"lodash.padend","response":"success"},{"item":"lodash.padstart","response":"success"},{"item":"lodash.parseint","response":"success"},{"item":"lodash.partial","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partialright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partition","response":"success"},{"item":"lodash.pick","response":"success"},{"item":"lodash.pickby","response":"success"},{"item":"lodash.property","response":"success"},{"item":"lodash.propertyof","response":"success"},{"item":"lodash.pull","response":"success"},{"item":"lodash.pullall","response":"success"},{"item":"lodash.pullallby","response":"success"},{"item":"lodash.pullallwith","response":"success"},{"item":"lodash.pullat","response":"success"},{"item":"lodash.random","response":"success"},{"item":"lodash.range","response":"success"},{"item":"lodash.rangeright","response":"success"},{"item":"lodash.rearg","response":"success"},{"item":"lodash.reduce","response":"success"},{"item":"lodash.reduceright","response":"success"},{"item":"lodash.reject","response":"success"},{"item":"lodash.remove","response":"success"},{"item":"lodash.repeat","response":"success"},{"item":"lodash.replace","response":"success"},{"item":"lodash.rest","response":"success"},{"item":"lodash.result","response":"success"},{"item":"lodash.reverse","response":"success"},{"item":"lodash.round","response":"success"},{"item":"lodash.sample","response":"success"},{"item":"lodash.samplesize","response":"success"},{"item":"lodash.set","response":"success"},{"item":"lodash.setwith","response":"success"},{"item":"lodash.shuffle","response":"success"},{"item":"lodash.size","response":"success"},{"item":"lodash.slice","response":"success"},{"item":"lodash.snakecase","response":"success"},{"item":"lodash.some","response":"success"},{"item":"lodash.sortby","response":"success"},{"item":"lodash.sortedindex","response":"success"},{"item":"lodash.sortedindexby","response":"success"},{"item":"lodash.sortedindexof","response":"success"},{"item":"lodash.sortedlastindex","response":"success"},{"item":"lodash.sortedlastindexby","response":"success"},{"item":"lodash.sortedlastindexof","response":"success"},{"item":"lodash.sorteduniq","response":"success"},{"item":"lodash.sorteduniqby","response":"success"},{"item":"lodash.split","response":"success"},{"item":"lodash.spread","response":"success"},{"item":"lodash.startcase","response":"success"},{"item":"lodash.startswith","response":"success"},{"item":"lodash.stubfalse","response":"success"},{"item":"lodash.stubtrue","response":"success"},{"item":"lodash.subtract","response":"success"},{"item":"lodash.sum","response":"success"},{"item":"lodash.sumby","response":"success"},{"item":"lodash.tail","response":"success"},{"item":"lodash.take","response":"success"},{"item":"lodash.takeright","response":"success"},{"item":"lodash.takerightwhile","response":"success"},{"item":"lodash.takewhile","response":"success"},{"item":"lodash.template","response":"success"},{"item":"lodash.throttle","response":"success"},{"item":"lodash.times","response":"success"},{"item":"lodash.toarray","response":"success"},{"item":"lodash.tofinite","response":"success"},{"item":"lodash.tointeger","response":"success"},{"item":"lodash.tolength","response":"success"},{"item":"lodash.tolower","response":"success"},{"item":"lodash.tonumber","response":"success"},{"item":"lodash.topairs","response":"success"},{"item":"lodash.topairsin","response":"success"},{"item":"lodash.topath","response":"success"},{"item":"lodash.toplainobject","response":"success"},{"item":"lodash.tosafeinteger","response":"success"},{"item":"lodash.tostring","response":"success"},{"item":"lodash.toupper","response":"success"},{"item":"lodash.transform","response":"success"},{"item":"lodash.trim","response":"success"},{"item":"lodash.trimend","response":"success"},{"item":"lodash.trimstart","response":"success"},{"item":"lodash.truncate","response":"success"},{"item":"lodash.unary","response":"success"},{"item":"lodash.unescape","response":"success"},{"item":"lodash.union","response":"success"},{"item":"lodash.unionby","response":"success"},{"item":"lodash.unionwith","response":"success"},{"item":"lodash.uniq","response":"success"},{"item":"lodash.uniqby","response":"success"},{"item":"lodash.uniqueid","response":"success"},{"item":"lodash.uniqwith","response":"success"},{"item":"lodash.unset","response":"success"},{"item":"lodash.unzip","response":"success"},{"item":"lodash.unzipwith","response":"success"},{"item":"lodash.update","response":"success"},{"item":"lodash.updatewith","response":"success"},{"item":"lodash.uppercase","response":"success"},{"item":"lodash.upperfirst","response":"success"},{"item":"lodash.values","response":"success"},{"item":"lodash.valuesin","response":"success"},{"item":"lodash.without","response":"success"},{"item":"lodash.words","response":"success"},{"item":"lodash.wrap","response":"success"},{"item":"lodash.xor","response":"success"},{"item":"lodash.xorby","response":"success"},{"item":"lodash.xorwith","response":"success"},{"item":"lodash.zip","response":"success"},{"item":"lodash.zipobject","response":"success"},{"item":"lodash.zipobjectdeep","response":"success"},{"item":"lodash.zipwith","response":"success"},{"item":"log-process-errors","response":"success"},{"item":"logat","response":"success"},{"item":"logfmt","response":"success"},{"item":"logg","response":"success"},{"item":"logger","response":"success"},{"item":"loggly","response":"success"},{"item":"login-with-amazon-sdk-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"logrocket-react","response":"success"},{"item":"logrotate-stream","response":"success"},{"item":"lokijs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"lolex","response":"success"},{"item":"long","response":"success"},{"item":"loopback","response":"success"},{"item":"loopback-boot","response":"success"},{"item":"loopbench","response":"success"},{"item":"looper","response":"success"},{"item":"lory.js","response":"success"},{"item":"lossless-json","response":"success"},{"item":"lovefield","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lowdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"lowlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lozad","response":"success"},{"item":"lru-cache","response":"success"},{"item":"lscache","response":"success"},{"item":"lscache","response":"success"},{"item":"ltx","response":"success"},{"item":"luaparse","response":"success"},{"item":"lucene","response":"success"},{"item":"lunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"lusca","response":"success"},{"item":"luxon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lwip","response":"success"},{"item":"lyric-parser","response":"success"},{"item":"lyricist","response":"success"},{"item":"lz-string","response":"success"},{"item":"lzma-native","response":"success"},{"item":"macaca-circular-json","response":"success"},{"item":"macrotask","response":"success"},{"item":"magic-number","response":"success"},{"item":"magicsuggest","response":"success"},{"item":"magnet-uri","response":"success"},{"item":"mailcheck","response":"success"},{"item":"maildev","response":"success"},{"item":"mailgen","response":"success"},{"item":"mailgun-js","response":"success"},{"item":"mailparser","response":"success"},{"item":"main-bower-files","response":"success"},{"item":"mainloop.js","response":"success"},{"item":"maker.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"makeup-expander","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"makeup-floating-label","response":"success"},{"item":"makeup-keyboard-trap","response":"success"},{"item":"makeup-prevent-scroll-keys","response":"success"},{"item":"makeup-screenreader-trap","response":"success"},{"item":"mandrill-api","response":"success"},{"item":"mangopay2-nodejs-sdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"map-to-obj","response":"success"},{"item":"mapbox","response":"success"},{"item":"mapbox-gl","response":"success"},{"item":"mapbox-gl-leaflet","response":"success"},{"item":"mapbox__geo-viewport","response":"success"},{"item":"mapbox__geojson-area","response":"success"},{"item":"mapbox__mapbox-sdk","response":"success"},{"item":"mapbox__polyline","response":"success"},{"item":"mapbox__s3urls","response":"success"},{"item":"mapbox__shelf-pack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"mapbox__sphericalmercator","response":"success"},{"item":"mapbox__tile-cover","response":"success"},{"item":"mapnik","response":"success"},{"item":"mapsjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mariasql","response":"success"},{"item":"mark.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"markdown-draft-js","response":"success"},{"item":"markdown-it","response":"success"},{"item":"markdown-it-anchor","response":"success"},{"item":"markdown-it-container","response":"success"},{"item":"markdown-it-lazy-headers","response":"success"},{"item":"markdown-magic","response":"success"},{"item":"markdown-pdf","response":"success"},{"item":"markdown-table","response":"success"},{"item":"markdown-to-jsx","response":"success"},{"item":"markdownlint","response":"success"},{"item":"marked","response":"success"},{"item":"marked-terminal","response":"success"},{"item":"markedjs__html-differ","response":"success"},{"item":"marker-animate-unobtrusive","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"markitup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"marko","response":"success"},{"item":"maskedinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"masonry-layout","response":"success"},{"item":"massive","response":"success"},{"item":"match-media-mock","response":"success"},{"item":"match-sorter","response":"success"},{"item":"matchdep","response":"success"},{"item":"material-design-lite","response":"success"},{"item":"material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"material-ui-datatables","response":"success"},{"item":"material-ui-pagination","response":"success"},{"item":"material__animation","response":"success"},{"item":"material__auto-init","response":"success"},{"item":"material__base","response":"success"},{"item":"material__checkbox","response":"success"},{"item":"material__chips","response":"success"},{"item":"material__dialog","response":"success"},{"item":"material__dom","response":"success"},{"item":"material__drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__floating-label","response":"success"},{"item":"material__form-field","response":"success"},{"item":"material__grid-list","response":"success"},{"item":"material__icon-toggle","response":"success"},{"item":"material__line-ripple","response":"success"},{"item":"material__linear-progress","response":"success"},{"item":"material__list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__notched-outline","response":"success"},{"item":"material__radio","response":"success"},{"item":"material__ripple","response":"success"},{"item":"material__select","response":"success"},{"item":"material__selection-control","response":"success"},{"item":"material__slider","response":"success"},{"item":"material__snackbar","response":"success"},{"item":"material__tab","response":"success"},{"item":"material__tabs","response":"success"},{"item":"material__textfield","response":"success"},{"item":"material__toolbar","response":"success"},{"item":"material__top-app-bar","response":"success"},{"item":"materialize-css","response":"success"},{"item":"math-expression-evaluator","response":"success"},{"item":"math-random","response":"success"},{"item":"math-sign","response":"success"},{"item":"math-trunc","response":"success"},{"item":"math3d","response":"success"},{"item":"mathjax","response":"success"},{"item":"mathjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"matrix-appservice-bridge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"matrix-js-sdk","response":"success"},{"item":"matter-js","response":"success"},{"item":"mcrypt","response":"success"},{"item":"mcustomscrollbar","response":"success"},{"item":"md5","response":"success"},{"item":"md5-file","response":"success"},{"item":"mdast","response":"success"},{"item":"mdns","response":"success"},{"item":"mdurl","response":"success"},{"item":"mdx-js__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"media-typer","response":"success"},{"item":"medium-editor","response":"success"},{"item":"megajs","response":"success"},{"item":"mem-cache","response":"success"},{"item":"mem-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mem-fs-editor","response":"success"},{"item":"memcached","response":"success"},{"item":"memdown","response":"success"},{"item":"memjs","response":"success"},{"item":"memoizee","response":"success"},{"item":"memory-cache","response":"success"},{"item":"memory-fs","response":"success"},{"item":"memory-pager","response":"success"},{"item":"memorystream","response":"success"},{"item":"memwatch-next","response":"success"},{"item":"meow","response":"success"},{"item":"merge-descriptors","response":"success"},{"item":"merge-env","response":"success"},{"item":"merge-images","response":"success"},{"item":"merge-img","response":"success"},{"item":"merge-objects","response":"success"},{"item":"merge-stream","response":"success"},{"item":"merge2","response":"success"},{"item":"mergerino","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"merkle","response":"success"},{"item":"mermaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mersenne-twister","response":"success"},{"item":"meshblu","response":"success"},{"item":"mess","response":"success"},{"item":"messenger","response":"success"},{"item":"metalsmith","response":"success"},{"item":"meteor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/meteor"},{"item":"meteor-accounts-phone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-astronomy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-collection-hooks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"meteor-jboulhous-dev","response":"success"},{"item":"meteor-persistent-session","response":"success"},{"item":"meteor-prime8consulting-oauth2","response":"success"},{"item":"meteor-publish-composite","response":"success"},{"item":"meteor-roles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-universe-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"method-override","response":"success"},{"item":"methods","response":"success"},{"item":"metric-suffix","response":"success"},{"item":"meyda","response":"success"},{"item":"mfiles","response":"success"},{"item":"micro","response":"success"},{"item":"micro-cors","response":"success"},{"item":"micro-events","response":"success"},{"item":"micromatch","response":"success"},{"item":"micromodal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microrouter","response":"success"},{"item":"microservice-utilities","response":"success"},{"item":"microsoft-ajax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-graph","response":"success"},{"item":"microsoft-live-connect","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-sdk-soap","response":"success"},{"item":"microsoft__typescript-etw","response":"success"},{"item":"microsoftteams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microtime","response":"success"},{"item":"migrate-mongo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"milkcocoa","response":"success"},{"item":"millisecond","response":"success"},{"item":"milliseconds","response":"success"},{"item":"mime","response":"success"},{"item":"mime-db","response":"success"},{"item":"mime-types","response":"success"},{"item":"mimos","response":"success"},{"item":"min-document","response":"success"},{"item":"min-indent","response":"success"},{"item":"mina","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"minapp-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/minapp-env/index.d.ts(14,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n../DefinitelyTyped/types/minapp-env/index.d.ts(90,3): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(292,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1088,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1302,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(4737,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5543,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Symbol\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5587,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Map\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5591,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakMap\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5595,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Set\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5599,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakSet\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5618,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"GeneratorFunction\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5626,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Promise\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5630,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.species]' must be of type 'PromiseConstructor', but here has type 'Function'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5682,3): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\nnode_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts(225,14): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n"},{"item":"mini-css-extract-plugin","response":"success"},{"item":"mini-html-webpack-plugin","response":"success"},{"item":"minilog","response":"success"},{"item":"minimal-bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"minimal-request-promise","response":"success"},{"item":"minimalistic-assert","response":"success"},{"item":"minimatch","response":"success"},{"item":"minimist","response":"success"},{"item":"minimist-options","response":"success"},{"item":"minio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"minipass","response":"success"},{"item":"miniprogram-wxs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\n\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(28,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(96,5): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(368,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(493,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1174,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1179,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1333,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1397,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(42,15): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(56,15): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n"},{"item":"mirrorx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mithril","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mithril-global","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mitm","response":"success"},{"item":"mitsobox","response":"success"},{"item":"mixpanel","response":"success"},{"item":"mixpanel-browser","response":"success"},{"item":"mixto","response":"success"},{"item":"mjml","response":"success"},{"item":"mjml-react","response":"success"},{"item":"mkcert","response":"success"},{"item":"mkdirp","response":"success"},{"item":"mkpath","response":"success"},{"item":"ml-levenberg-marquardt","response":"success"},{"item":"mmmagic","response":"success"},{"item":"mobile-messaging-cordova","response":"success"},{"item":"mobx-apollo","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'find' of undefined\n"},{"item":"mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"mocha-each","response":"success"},{"item":"mocha-phantomjs","response":"success"},{"item":"mocha-prepare","response":"success"},{"item":"mocha-steps","response":"success"},{"item":"mocha-sugar-free","response":"success"},{"item":"mochaccino","response":"success"},{"item":"mock-aws-s3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mock-express-request","response":"success"},{"item":"mock-fs","response":"success"},{"item":"mock-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mock-raf","response":"success"},{"item":"mock-req-res","response":"success"},{"item":"mock-require","response":"success"},{"item":"mockdate","response":"success"},{"item":"mockery","response":"success"},{"item":"mockjs","response":"success"},{"item":"modernizr","response":"success"},{"item":"modesl","response":"success"},{"item":"modular-scale","response":"success"},{"item":"module-alias","response":"success"},{"item":"module-deps","response":"success"},{"item":"moji","response":"success"},{"item":"moment-business","response":"success"},{"item":"moment-business-time","response":"success"},{"item":"moment-duration-format","response":"success"},{"item":"moment-hijri","response":"success"},{"item":"moment-holiday","response":"success"},{"item":"moment-jalaali","response":"success"},{"item":"moment-precise-range-plugin","response":"success"},{"item":"moment-round","response":"success"},{"item":"moment-shortformat","response":"success"},{"item":"moment-strftime2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\n\n../DefinitelyTyped/types/moment-strftime2/index.d.ts(7,26): error TS2307: Cannot find module 'moment'.\n"},{"item":"moment-timezone","response":"success"},{"item":"money-math","response":"success"},{"item":"mongo-sanitize","response":"success"},{"item":"mongodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"mongodb-queue","response":"success"},{"item":"mongodb-uri","response":"success"},{"item":"mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-auto-increment","response":"success"},{"item":"mongoose-autopopulate","response":"success"},{"item":"mongoose-deep-populate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"mongoose-delete","response":"success"},{"item":"mongoose-geojson-schema","response":"success"},{"item":"mongoose-lean-virtuals","response":"success"},{"item":"mongoose-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate-v2","response":"success"},{"item":"mongoose-promise","response":"success"},{"item":"mongoose-seeder","response":"success"},{"item":"mongoose-sequence","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-simple-random","response":"success"},{"item":"mongoose-unique-validator","response":"success"},{"item":"mongorito","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"mongration","response":"success"},{"item":"moo","response":"success"},{"item":"moonjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n"},{"item":"morgan","response":"success"},{"item":"morris.js","response":"success"},{"item":"mosca","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"motion-scroll","response":"success"},{"item":"motor-hat","response":"success"},{"item":"mousetrap","response":"success"},{"item":"move-concurrently","response":"success"},{"item":"moveto","response":"success"},{"item":"moviedb","response":"success"},{"item":"moxios","response":"success"},{"item":"mozilla-readability","response":"success"},{"item":"mozjpeg","response":"success"},{"item":"mpromise","response":"success"},{"item":"mri","response":"success"},{"item":"mrz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"ms","response":"success"},{"item":"msgpack","response":"success"},{"item":"msgpack-lite","response":"success"},{"item":"msgpack5","response":"success"},{"item":"msnodesql","response":"success"},{"item":"mssql","response":"success"},{"item":"mta-h5-analysis","response":"success"},{"item":"mu2","response":"success"},{"item":"mui-datatables","response":"success"},{"item":"muibox","response":"success"},{"item":"muicss","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/muicss"},{"item":"multer","response":"success"},{"item":"multer-gridfs-storage","response":"success"},{"item":"multer-s3","response":"success"},{"item":"multi-progress","response":"success"},{"item":"multi-typeof","response":"success"},{"item":"multiaddr","response":"success"},{"item":"multibase","response":"success"},{"item":"multicodec","response":"success"},{"item":"multimap","response":"success"},{"item":"multiparty","response":"success"},{"item":"multipipe","response":"success"},{"item":"multiplexjs","response":"success"},{"item":"multireducer","response":"success"},{"item":"multisort","response":"success"},{"item":"multistream","response":"success"},{"item":"multivariate-normal","response":"success"},{"item":"multy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"mumath","response":"success"},{"item":"muri","response":"success"},{"item":"murmurhash","response":"success"},{"item":"murmurhash-js","response":"success"},{"item":"murmurhash3js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"musicmatch","response":"success"},{"item":"musicmetadata","response":"success"},{"item":"mustache","response":"success"},{"item":"mustache-express","response":"success"},{"item":"mutexify","response":"success"},{"item":"mv","response":"success"},{"item":"mysql","response":"success"},{"item":"mysql-import","response":"success"},{"item":"mz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"n-readlines","response":"success"},{"item":"n3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"naja","response":"success"},{"item":"named-regexp-groups","response":"success"},{"item":"named-routes","response":"success"},{"item":"nano-equal","response":"success"},{"item":"nanoajax","response":"success"},{"item":"nanoassert","response":"success"},{"item":"nanoevents","response":"success"},{"item":"nanographql","response":"success"},{"item":"nanoid","response":"success"},{"item":"nanomsg","response":"success"},{"item":"nanoscroller","response":"success"},{"item":"nanotimer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"nanp","response":"success"},{"item":"native-toast","response":"success"},{"item":"natural","response":"success"},{"item":"natural-compare","response":"success"},{"item":"natural-compare-lite","response":"success"},{"item":"natural-sort","response":"success"},{"item":"naudiodon","response":"success"},{"item":"naver-whale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navermaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navigo","response":"success"},{"item":"ncom","response":"success"},{"item":"nconf","response":"success"},{"item":"ncp","response":"success"},{"item":"ndarray","response":"success"},{"item":"ndjson","response":"success"},{"item":"ndn-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"nearley","response":"success"},{"item":"neat-csv","response":"success"},{"item":"nedb","response":"success"},{"item":"nedb-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"needle","response":"success"},{"item":"negotiator","response":"success"},{"item":"neo4j","response":"success"},{"item":"nes","response":"success"},{"item":"nestdb","response":"success"},{"item":"nested-error-stacks","response":"success"},{"item":"net-keepalive","response":"success"},{"item":"net-ticks","response":"success"},{"item":"netconf","response":"success"},{"item":"netease-captcha","response":"success"},{"item":"netlify-identity-widget","response":"success"},{"item":"netmask","response":"success"},{"item":"network-interfaces","response":"success"},{"item":"neverbounce","response":"success"},{"item":"new-relic-browser","response":"success"},{"item":"newline-remove","response":"success"},{"item":"newman","response":"success"},{"item":"newrelic","response":"success"},{"item":"newrelic__winston-enricher","response":"success"},{"item":"nexpect","response":"success"},{"item":"next-nprogress","response":"success"},{"item":"next-redux-saga","response":"success"},{"item":"next-seo","response":"success"},{"item":"next-tick","response":"success"},{"item":"nextgen-events","response":"success"},{"item":"ng-command","response":"success"},{"item":"ng-cordova","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/ng-cordova"},{"item":"ng-dialog","response":"success"},{"item":"ng-facebook","response":"success"},{"item":"ng-file-upload","response":"success"},{"item":"ng-flow","response":"success"},{"item":"ng-grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-i18next","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-notify","response":"success"},{"item":"ng-stomp","response":"success"},{"item":"ng-tags-input","response":"success"},{"item":"ngbootbox","response":"success"},{"item":"ngeohash","response":"success"},{"item":"ngkookies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngprogress","response":"success"},{"item":"ngprogress-lite","response":"success"},{"item":"ngreact","response":"success"},{"item":"ngsijs","response":"success"},{"item":"ngstorage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/ngstorage/index.d.ts(41,39): error TS2503: Cannot find namespace 'angular'.\n"},{"item":"ngtoaster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n"},{"item":"ngwysiwyg","response":"success"},{"item":"nice-try","response":"success"},{"item":"nightmare","response":"success"},{"item":"nightwatch","response":"success"},{"item":"nise","response":"success"},{"item":"nivo-slider","response":"success"},{"item":"no-scroll","response":"success"},{"item":"noble","response":"success"},{"item":"noble-mac","response":"success"},{"item":"nodal","response":"success"},{"item":"node","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'statements' of undefined\n"},{"item":"node-7z","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-abi","response":"success"},{"item":"node-apple-receipt-verify","response":"success"},{"item":"node-array-ext","response":"success"},{"item":"node-browser-history","response":"success"},{"item":"node-calendar","response":"success"},{"item":"node-cleanup","response":"success"},{"item":"node-config-manager","response":"success"},{"item":"node-crate","response":"success"},{"item":"node-cron","response":"success"},{"item":"node-dijkstra","response":"success"},{"item":"node-dir","response":"success"},{"item":"node-dogstatsd","response":"success"},{"item":"node-downloader-helper","response":"success"},{"item":"node-easy-cert","response":"success"},{"item":"node-emoji","response":"success"},{"item":"node-expat","response":"success"},{"item":"node-fetch","response":"success"},{"item":"node-fibers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-forge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-gcm","response":"success"},{"item":"node-geocoder","response":"success"},{"item":"node-getopt","response":"success"},{"item":"node-gettext","response":"success"},{"item":"node-gzip","response":"success"},{"item":"node-hid","response":"success"},{"item":"node-horseman","response":"success"},{"item":"node-hue-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-insights","response":"success"},{"item":"node-int64","response":"success"},{"item":"node-ipc","response":"success"},{"item":"node-jose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-jsfl-runner","response":"success"},{"item":"node-localstorage","response":"success"},{"item":"node-loggly-bulk","response":"success"},{"item":"node-mailjet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-memwatch","response":"success"},{"item":"node-mysql-wrapper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"node-notifier","response":"success"},{"item":"node-observer","response":"success"},{"item":"node-openload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"node-os-utils","response":"success"},{"item":"node-pdftk","response":"success"},{"item":"node-persist","response":"success"},{"item":"node-phpass","response":"success"},{"item":"node-polyglot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-powershell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-pushnotifications","response":"success"},{"item":"node-ral","response":"success"},{"item":"node-red","response":"success"},{"item":"node-redis-pubsub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"node-redmine","response":"success"},{"item":"node-resque","response":"success"},{"item":"node-rsa","response":"success"},{"item":"node-sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-sass-middleware","response":"success"},{"item":"node-schedule","response":"success"},{"item":"node-slack","response":"success"},{"item":"node-snap7","response":"success"},{"item":"node-sprite-generator","response":"success"},{"item":"node-ssdp","response":"success"},{"item":"node-ssh","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-static","response":"success"},{"item":"node-statsd","response":"success"},{"item":"node-telegram-bot-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-timecodes","response":"success"},{"item":"node-uuid","response":"success"},{"item":"node-vagrant","response":"success"},{"item":"node-validator","response":"success"},{"item":"node-vault","response":"success"},{"item":"node-wget-promise","response":"success"},{"item":"node-windows","response":"success"},{"item":"node-wit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-xlsx","response":"success"},{"item":"node-xmpp-client","response":"success"},{"item":"node-xmpp-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zendesk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zookeeper-client","response":"success"},{"item":"node-zopfli","response":"success"},{"item":"node-zopfli-es","response":"success"},{"item":"node_redis","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/node_redis"},{"item":"nodecredstash","response":"success"},{"item":"nodegit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nodejs-license-file","response":"success"},{"item":"nodemailer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"nodemailer-direct-transport","response":"success"},{"item":"nodemailer-mailgun-transport","response":"success"},{"item":"nodemailer-pickup-transport","response":"success"},{"item":"nodemailer-ses-transport","response":"success"},{"item":"nodemailer-smtp-pool","response":"success"},{"item":"nodemailer-smtp-transport","response":"success"},{"item":"nodemailer-stub-transport","response":"success"},{"item":"nodemon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"nodeunit","response":"success"},{"item":"noisejs","response":"success"},{"item":"nomnom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nonogram-solver","response":"success"},{"item":"nopt","response":"success"},{"item":"normalize-jss","response":"success"},{"item":"normalize-package-data","response":"success"},{"item":"normalize-path","response":"success"},{"item":"nosleep.js","response":"success"},{"item":"notie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/notie"},{"item":"notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notifyjs","response":"success"},{"item":"notifyjs-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nouislider","response":"success"},{"item":"novnc-core","response":"success"},{"item":"npm","response":"success"},{"item":"npm-cache-filename","response":"success"},{"item":"npm-license-crawler","response":"success"},{"item":"npm-list-author-packages","response":"success"},{"item":"npm-package-arg","response":"success"},{"item":"npm-packlist","response":"success"},{"item":"npm-paths","response":"success"},{"item":"npm-registry-fetch","response":"success"},{"item":"npm-registry-package-info","response":"success"},{"item":"npm-run","response":"success"},{"item":"npm-user-packages","response":"success"},{"item":"npm-which","response":"success"},{"item":"npmlog","response":"success"},{"item":"nprogress","response":"success"},{"item":"ns-api","response":"success"},{"item":"nslog","response":"success"},{"item":"nsqjs","response":"success"},{"item":"nssm","response":"success"},{"item":"ntlm-client","response":"success"},{"item":"nuclear-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n"},{"item":"num2fraction","response":"success"},{"item":"number-is-nan","response":"success"},{"item":"number-to-words","response":"success"},{"item":"numeral","response":"success"},{"item":"numeric","response":"success"},{"item":"numjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks-date","response":"success"},{"item":"nuxtjs__auth","response":"success"},{"item":"nvd3","response":"success"},{"item":"nw.gui","response":"success"},{"item":"nw.js","response":"success"},{"item":"nwmatcher","response":"success"},{"item":"nyaapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"oakdex-pokedex","response":"success"},{"item":"oauth","response":"success"},{"item":"oauth-shim","response":"success"},{"item":"oauth.js","response":"success"},{"item":"oauth2-implicit","response":"success"},{"item":"oauth2-server","response":"success"},{"item":"oauth2orize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"obelisk.js","response":"success"},{"item":"obj-file-parser","response":"success"},{"item":"obj-str","response":"success"},{"item":"object-assign","response":"success"},{"item":"object-assign-deep","response":"success"},{"item":"object-diff","response":"success"},{"item":"object-fit-images","response":"success"},{"item":"object-hash","response":"success"},{"item":"object-inspect","response":"success"},{"item":"object-joiner","response":"success"},{"item":"object-keys","response":"success"},{"item":"object-keys-mapping","response":"success"},{"item":"object-map","response":"success"},{"item":"object-mapper","response":"success"},{"item":"object-merge","response":"success"},{"item":"object-path","response":"success"},{"item":"object-refs","response":"success"},{"item":"object.getownpropertydescriptors","response":"success"},{"item":"object.omit","response":"success"},{"item":"object.pick","response":"success"},{"item":"objtools","response":"success"},{"item":"oblo-util","response":"success"},{"item":"oboe","response":"success"},{"item":"observe-js","response":"success"},{"item":"obsolete-web","response":"success"},{"item":"oclazyload","response":"success"},{"item":"ofe","response":"success"},{"item":"office-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-js-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-runtime","response":"success"},{"item":"offline-js","response":"success"},{"item":"offscreen-canvas","response":"success"},{"item":"offscreencanvas","response":"success"},{"item":"oibackoff","response":"success"},{"item":"oidc-token-manager","response":"success"},{"item":"oja","response":"success"},{"item":"okta__okta-vue","response":"success"},{"item":"ol","response":"success"},{"item":"omelette","response":"success"},{"item":"omggif","response":"success"},{"item":"omit-empty","response":"success"},{"item":"on-finished","response":"success"},{"item":"on-headers","response":"success"},{"item":"on-wake-up","response":"success"},{"item":"once","response":"success"},{"item":"one-time","response":"success"},{"item":"onesignal-cordova-plugin","response":"success"},{"item":"onfleet__node-onfleet","response":"success"},{"item":"oniguruma","response":"success"},{"item":"onionoo","response":"success"},{"item":"ontime","response":"success"},{"item":"open-graph","response":"success"},{"item":"open-wc__testing-karma","response":"success"},{"item":"open-wc__testing-karma-bs","response":"success"},{"item":"open-wc__webpack-import-meta-loader","response":"success"},{"item":"openapi-factory","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opener","response":"success"},{"item":"openfin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"openid","response":"success"},{"item":"openjscad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"openlayers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"openpgp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"openssi-websdk","response":"success"},{"item":"openstack-wrapper","response":"success"},{"item":"opentok","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opentype.js","response":"success"},{"item":"openui5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/openui5"},{"item":"openurl","response":"success"},{"item":"openurl2","response":"success"},{"item":"opossum","response":"success"},{"item":"optics-agent","response":"success"},{"item":"optimist","response":"success"},{"item":"optimize-css-assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"oracle__oraclejet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"oracledb","response":"success"},{"item":"orchestrator","response":"success"},{"item":"orderedmap","response":"success"},{"item":"orientjs","response":"success"},{"item":"original","response":"success"},{"item":"os-homedir","response":"success"},{"item":"os-service","response":"success"},{"item":"os-tmpdir","response":"success"},{"item":"os-utils","response":"success"},{"item":"osenv","response":"success"},{"item":"osmosis","response":"success"},{"item":"osmtogeojson","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ospec","response":"success"},{"item":"osrm","response":"success"},{"item":"osrs-json-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ot","response":"success"},{"item":"ouibounce","response":"success"},{"item":"overlayscrollbars","response":"success"},{"item":"overload-protection","response":"success"},{"item":"owasp-password-strength-test","response":"success"},{"item":"owl.carousel","response":"success"},{"item":"owlcarousel","response":"success"},{"item":"p-fifo","response":"success"},{"item":"p-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"p2","response":"success"},{"item":"p5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"pa11y","response":"success"},{"item":"package-info","response":"success"},{"item":"packery","response":"success"},{"item":"pacote","response":"success"},{"item":"pad-left","response":"success"},{"item":"page","response":"success"},{"item":"page-icon","response":"success"},{"item":"pager__jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"paho-mqtt","response":"success"},{"item":"pako","response":"success"},{"item":"palx","response":"success"},{"item":"pangu","response":"success"},{"item":"papaparse","response":"success"},{"item":"parallel-transform","response":"success"},{"item":"paralleljs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parameterize","response":"success"},{"item":"parcel-bundler","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parcel-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'children' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'parent' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'require' of types 'Module' and 'Module' are not identical.\n"},{"item":"parent-package-json","response":"success"},{"item":"parents","response":"success"},{"item":"parity-pmd","response":"success"},{"item":"parity-pmr","response":"success"},{"item":"parity-poe","response":"success"},{"item":"parquetjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"parse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"parse-author","response":"success"},{"item":"parse-color","response":"success"},{"item":"parse-filepath","response":"success"},{"item":"parse-full-name","response":"success"},{"item":"parse-git-config","response":"success"},{"item":"parse-github-url","response":"success"},{"item":"parse-glob","response":"success"},{"item":"parse-human-date-range","response":"success"},{"item":"parse-json","response":"success"},{"item":"parse-link-header","response":"success"},{"item":"parse-mockdb","response":"success"},{"item":"parse-numeric-range","response":"success"},{"item":"parse-package-name","response":"success"},{"item":"parse-passwd","response":"success"},{"item":"parse-path","response":"success"},{"item":"parse-prefer-header","response":"success"},{"item":"parse-torrent","response":"success"},{"item":"parse-torrent-file","response":"success"},{"item":"parse-unit","response":"success"},{"item":"parse5","response":"success"},{"item":"parse5-html-rewriting-stream","response":"success"},{"item":"parse5-htmlparser2-tree-adapter","response":"success"},{"item":"parse5-parser-stream","response":"success"},{"item":"parse5-plain-text-conversion-stream","response":"success"},{"item":"parse5-sax-parser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"parse5-serializer-stream","response":"success"},{"item":"parsecurrency","response":"success"},{"item":"parseurl","response":"success"},{"item":"parsimmon","response":"success"},{"item":"passport","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'ids' of undefined\n"},{"item":"passport-anonymous","response":"success"},{"item":"passport-auth0","response":"success"},{"item":"passport-azure-ad","response":"success"},{"item":"passport-beam","response":"success"},{"item":"passport-bnet","response":"success"},{"item":"passport-cognito","response":"success"},{"item":"passport-discord","response":"success"},{"item":"passport-facebook","response":"success"},{"item":"passport-facebook-token","response":"success"},{"item":"passport-github","response":"success"},{"item":"passport-github2","response":"success"},{"item":"passport-google-oauth","response":"success"},{"item":"passport-google-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"passport-google-oauth20","response":"success"},{"item":"passport-http","response":"success"},{"item":"passport-http-bearer","response":"success"},{"item":"passport-instagram","response":"success"},{"item":"passport-jwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"passport-kakao","response":"success"},{"item":"passport-linkedin-oauth2","response":"success"},{"item":"passport-local","response":"success"},{"item":"passport-local-mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"passport-microsoft","response":"success"},{"item":"passport-naver","response":"success"},{"item":"passport-oauth2","response":"success"},{"item":"passport-oauth2-client-password","response":"success"},{"item":"passport-oauth2-refresh","response":"success"},{"item":"passport-remember-me-extended","response":"success"},{"item":"passport-saml","response":"success"},{"item":"passport-steam","response":"success"},{"item":"passport-strategy","response":"success"},{"item":"passport-twitter","response":"success"},{"item":"passport-unique-token","response":"success"},{"item":"passport-vkontakte","response":"success"},{"item":"passport-windowsauth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"passport.socketio","response":"success"},{"item":"password","response":"success"},{"item":"password-hash","response":"success"},{"item":"password-hash-and-salt","response":"success"},{"item":"path-is-absolute","response":"success"},{"item":"path-is-inside","response":"success"},{"item":"path-parse","response":"success"},{"item":"path-regex","response":"success"},{"item":"pathfinding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pathjs","response":"success"},{"item":"pathval","response":"success"},{"item":"pathwatcher","response":"success"},{"item":"pause","response":"success"},{"item":"payment","response":"success"},{"item":"paypal-cordova-plugin","response":"success"},{"item":"paypal-rest-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"paystack","response":"success"},{"item":"pbf","response":"success"},{"item":"pbkdf2","response":"success"},{"item":"pdf-fill-form","response":"success"},{"item":"pdf-image","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"pdf-viewer-reactjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"pdf2image","response":"success"},{"item":"pdfjs-dist","response":"success"},{"item":"pdfkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pdfmake","response":"success"},{"item":"pdfobject","response":"success"},{"item":"pebblekitjs","response":"success"},{"item":"peer-dial","response":"success"},{"item":"pegjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pell","response":"success"},{"item":"pem","response":"success"},{"item":"pem-jwk","response":"success"},{"item":"pendo-io-browser","response":"success"},{"item":"perfy","response":"success"},{"item":"permit","response":"success"},{"item":"persona","response":"success"},{"item":"pet-finder-api","response":"success"},{"item":"petit-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg-copy-streams","response":"success"},{"item":"pg-ears","response":"success"},{"item":"pg-escape","response":"success"},{"item":"pg-format","response":"success"},{"item":"pg-large-object","response":"success"},{"item":"pg-pool","response":"success"},{"item":"pg-query-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"pg-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pgwmodal","response":"success"},{"item":"phantom","response":"success"},{"item":"phantomcss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phantomjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phoenix","response":"success"},{"item":"phone","response":"success"},{"item":"phone-formatter","response":"success"},{"item":"phoneformat.js","response":"success"},{"item":"phonegap","response":"success"},{"item":"phonegap-facebook-plugin","response":"success"},{"item":"phonegap-nfc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/phonegap-nfc/index.d.ts(459,5): error TS2309: An export assignment cannot be used in a module with other exported elements.\n"},{"item":"phonegap-plugin-barcodescanner","response":"success"},{"item":"phonon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceExportDeclaration - it will convert to null"},{"item":"photonui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"photoswipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"php-serialize","response":"success"},{"item":"physijs","response":"success"},{"item":"pi-camera","response":"success"},{"item":"pi-spi","response":"success"},{"item":"pica","response":"success"},{"item":"pick-deep","response":"success"},{"item":"pick-weight","response":"success"},{"item":"pickadate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"picturefill","response":"success"},{"item":"pid-from-port","response":"success"},{"item":"pidusage","response":"success"},{"item":"pify","response":"success"},{"item":"pigpio","response":"success"},{"item":"pigpio-dht","response":"success"},{"item":"pikaday","response":"success"},{"item":"pikaday-time","response":"success"},{"item":"ping","response":"success"},{"item":"pinkyswear","response":"success"},{"item":"pino","response":"success"},{"item":"pino-http","response":"success"},{"item":"pino-multi-stream","response":"success"},{"item":"pino-std-serializers","response":"success"},{"item":"pinterest-sdk","response":"success"},{"item":"pinyin","response":"success"},{"item":"piwik-tracker","response":"success"},{"item":"pixelmatch","response":"success"},{"item":"pixl-xml","response":"success"},{"item":"pizzip","response":"success"},{"item":"pkcs7-padding","response":"success"},{"item":"pkgcloud","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pkijs","response":"success"},{"item":"places","response":"success"},{"item":"plaid-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"platform","response":"success"},{"item":"playerframework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"playmusic","response":"success"},{"item":"pleasejs","response":"success"},{"item":"plist","response":"success"},{"item":"plotly.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"plugapi","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plugin-error","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plupload","response":"success"},{"item":"pluralize","response":"success"},{"item":"plurals-cldr","response":"success"},{"item":"png.js","response":"success"},{"item":"pngjs","response":"success"},{"item":"pngjs2","response":"success"},{"item":"pngquant-bin","response":"success"},{"item":"pnpapi","response":"success"},{"item":"podcast","response":"success"},{"item":"podium","response":"success"},{"item":"poi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"point-in-polygon","response":"success"},{"item":"poker-evaluator","response":"success"},{"item":"pollyjs__adapter","response":"success"},{"item":"pollyjs__adapter-fetch","response":"success"},{"item":"pollyjs__adapter-node-http","response":"success"},{"item":"pollyjs__adapter-puppeteer","response":"success"},{"item":"pollyjs__adapter-xhr","response":"success"},{"item":"pollyjs__core","response":"success"},{"item":"pollyjs__node-server","response":"success"},{"item":"pollyjs__persister","response":"success"},{"item":"pollyjs__persister-fs","response":"success"},{"item":"pollyjs__persister-local-storage","response":"success"},{"item":"pollyjs__persister-rest","response":"success"},{"item":"pollyjs__utils","response":"success"},{"item":"polyfill-service","response":"success"},{"item":"polygon","response":"success"},{"item":"polygons-intersect","response":"success"},{"item":"polylabel","response":"success"},{"item":"polyline","response":"success"},{"item":"polymer","response":"success"},{"item":"polymer-ts","response":"success"},{"item":"popcorn","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'kind' of undefined\n"},{"item":"port-numbers","response":"success"},{"item":"portscanner","response":"success"},{"item":"postal","response":"success"},{"item":"postcss-calc","response":"success"},{"item":"postcss-custom-properties","response":"success"},{"item":"postcss-icss-values","response":"success"},{"item":"postcss-import","response":"success"},{"item":"postcss-load-config","response":"success"},{"item":"postcss-modules-extract-imports","response":"success"},{"item":"postcss-modules-local-by-default","response":"success"},{"item":"postcss-modules-resolve-imports","response":"success"},{"item":"postcss-modules-scope","response":"success"},{"item":"postcss-modules-values","response":"success"},{"item":"postcss-nested","response":"success"},{"item":"postcss-reporter","response":"success"},{"item":"postcss-url","response":"success"},{"item":"poster-image","response":"success"},{"item":"postlight__mercury-parser","response":"success"},{"item":"postman-collection","response":"success"},{"item":"postmate","response":"success"},{"item":"pouch-redux-middleware","response":"success"},{"item":"pouchdb","response":"success"},{"item":"pouchdb-adapter-cordova-sqlite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-fruitdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-http","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-idb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-leveldb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-localstorage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-memory","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-node-websql","response":"success"},{"item":"pouchdb-adapter-websql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-browser","response":"success"},{"item":"pouchdb-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-http","response":"success"},{"item":"pouchdb-live-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-mapreduce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-replication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-upsert","response":"success"},{"item":"power-assert","response":"success"},{"item":"power-assert-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"powerapps-component-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/powerapps-component-framework"},{"item":"powerbi-visuals-tools","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"preact-i18n","response":"success"},{"item":"precise","response":"success"},{"item":"precond","response":"success"},{"item":"preferred-pm","response":"success"},{"item":"prefixfree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"preloadjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prelude-ls","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier-package-json","response":"success"},{"item":"pretty","response":"success"},{"item":"pretty-hrtime","response":"success"},{"item":"pretty-time","response":"success"},{"item":"prettyjson","response":"success"},{"item":"preval.macro","response":"success"},{"item":"primus","response":"success"},{"item":"priorityqueuejs","response":"success"},{"item":"prismic-dom","response":"success"},{"item":"prismjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"private-ip","response":"success"},{"item":"probability-distributions","response":"success"},{"item":"procfs-stats","response":"success"},{"item":"proclaim","response":"success"},{"item":"progress","response":"success"},{"item":"progress-bar-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"progress-stream","response":"success"},{"item":"progressbar","response":"success"},{"item":"progressjs","response":"success"},{"item":"proj4","response":"success"},{"item":"proj4leaflet","response":"success"},{"item":"project-name","response":"success"},{"item":"project-oxford","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"prometheus-gc-stats","response":"success"},{"item":"promise-abortable","response":"success"},{"item":"promise-dag","response":"success"},{"item":"promise-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-ftp-common","response":"success"},{"item":"promise-hash","response":"success"},{"item":"promise-inflight","response":"success"},{"item":"promise-map-limit","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise.allsettled","response":"success"},{"item":"promise.prototype.finally","response":"success"},{"item":"promised-ldap","response":"success"},{"item":"promised-temp","response":"success"},{"item":"promisify-node","response":"success"},{"item":"promisify-supertest","response":"success"},{"item":"prompt-sync","response":"success"},{"item":"prompt-sync-history","response":"success"},{"item":"promptly","response":"success"},{"item":"prompts","response":"success"},{"item":"prop-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"proper-lockfile","response":"success"},{"item":"proper-url-join","response":"success"},{"item":"properties-reader","response":"success"},{"item":"prosemirror-collab","response":"success"},{"item":"prosemirror-commands","response":"success"},{"item":"prosemirror-dev-tools","response":"success"},{"item":"prosemirror-dropcursor","response":"success"},{"item":"prosemirror-gapcursor","response":"success"},{"item":"prosemirror-history","response":"success"},{"item":"prosemirror-inputrules","response":"success"},{"item":"prosemirror-keymap","response":"success"},{"item":"prosemirror-markdown","response":"success"},{"item":"prosemirror-menu","response":"success"},{"item":"prosemirror-model","response":"success"},{"item":"prosemirror-schema-basic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"prosemirror-schema-list","response":"success"},{"item":"prosemirror-state","response":"success"},{"item":"prosemirror-test-builder","response":"success"},{"item":"prosemirror-transform","response":"success"},{"item":"prosemirror-view","response":"success"},{"item":"protoc-plugin","response":"success"},{"item":"protocol-buffers-schema","response":"success"},{"item":"protocols","response":"success"},{"item":"proton-native","response":"success"},{"item":"protoo-server","response":"success"},{"item":"protractor-browser-logs","response":"success"},{"item":"protractor-helpers","response":"success"},{"item":"protractor-http-mock","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"provinces","response":"success"},{"item":"proxy-addr","response":"success"},{"item":"proxy-from-env","response":"success"},{"item":"proxy-lists","response":"success"},{"item":"proxy-verifier","response":"success"},{"item":"proxyquire","response":"success"},{"item":"ps-tree","response":"success"},{"item":"pseudo-audio-param","response":"success"},{"item":"psl","response":"success"},{"item":"ptomasroos__react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"pty.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pubnub","response":"success"},{"item":"pubsub-js","response":"success"},{"item":"pug","response":"success"},{"item":"pull-stream","response":"success"},{"item":"pulltorefreshjs","response":"success"},{"item":"pulsar-client","response":"success"},{"item":"pump","response":"success"},{"item":"pumpify","response":"success"},{"item":"punycode","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"puppeteer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"puppeteer-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"purdy","response":"success"},{"item":"pure-render-decorator","response":"success"},{"item":"purifycss-webpack","response":"success"},{"item":"purl","response":"success"},{"item":"pusher-js","response":"success"},{"item":"pusher__chatkit-client","response":"success"},{"item":"pvutils","response":"success"},{"item":"python-shell","response":"success"},{"item":"python-struct","response":"success"},{"item":"q","response":"success"},{"item":"q-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"q-retry","response":"success"},{"item":"qhistory","response":"success"},{"item":"qiniu-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik-engineapi","response":"success"},{"item":"qlik-visualizationextensions","response":"success"},{"item":"qr-image","response":"success"},{"item":"qrcode","response":"success"},{"item":"qrcode-svg","response":"success"},{"item":"qrcode.react","response":"success"},{"item":"qs","response":"success"},{"item":"qs-middleware","response":"success"},{"item":"qtip2","response":"success"},{"item":"querystringify","response":"success"},{"item":"quick-hash","response":"success"},{"item":"quill","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\n\n../DefinitelyTyped/types/quill/node_modules/quill-delta/dist/Delta.d.ts(1,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/quill/node_modules/fast-diff/diff\"' can only be default-imported using the 'esModuleInterop' flag\n"},{"item":"quixote","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"quoted-printable","response":"success"},{"item":"qwest","response":"success"},{"item":"r-script","response":"success"},{"item":"rabbit.js","response":"success"},{"item":"rabbitmq-schema","response":"success"},{"item":"radium","response":"success"},{"item":"radius","response":"success"},{"item":"radix64","response":"success"},{"item":"raf","response":"success"},{"item":"raf-schd","response":"success"},{"item":"ramda","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"random","response":"success"},{"item":"random-boolean","response":"success"},{"item":"random-bytes","response":"success"},{"item":"random-normal","response":"success"},{"item":"random-number","response":"success"},{"item":"random-seed","response":"success"},{"item":"random-string","response":"success"},{"item":"random-useragent","response":"success"},{"item":"randombytes","response":"success"},{"item":"randomcolor","response":"success"},{"item":"randomstring","response":"success"},{"item":"range-parser","response":"success"},{"item":"range_check","response":"success"},{"item":"rangy","response":"success"},{"item":"rangyinputs","response":"success"},{"item":"ranjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raphael","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"rappid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rascal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rasha","response":"success"},{"item":"raspi","response":"success"},{"item":"raspi-board","response":"success"},{"item":"raspi-gpio","response":"success"},{"item":"raspi-i2c","response":"success"},{"item":"raspi-led","response":"success"},{"item":"raspi-onewire","response":"success"},{"item":"raspi-peripheral","response":"success"},{"item":"raspi-pwm","response":"success"},{"item":"raspi-serial","response":"success"},{"item":"raspi-soft-pwm","response":"success"},{"item":"rate-limit-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"ratelimiter","response":"success"},{"item":"raty","response":"success"},{"item":"raven","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raven-for-redux","response":"success"},{"item":"rax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"raygun","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raygun4js","response":"success"},{"item":"rbac-a","response":"success"},{"item":"rbush","response":"success"},{"item":"rc","response":"success"},{"item":"rc-select","response":"success"},{"item":"rc-slider","response":"success"},{"item":"rc-steps","response":"success"},{"item":"rc-switch","response":"success"},{"item":"rc-time-picker","response":"success"},{"item":"rc-tooltip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rc-tree","response":"success"},{"item":"rcloader","response":"success"},{"item":"rdf-data-model","response":"success"},{"item":"rdf-dataset-ext","response":"success"},{"item":"rdf-dataset-indexed","response":"success"},{"item":"rdf-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"rdf-js","response":"success"},{"item":"rdf-transform-triple-to-quad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__dataset","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'ids' of undefined\n"},{"item":"rdfjs__express-handler","response":"success"},{"item":"rdfjs__fetch","response":"success"},{"item":"rdfjs__fetch-lite","response":"success"},{"item":"rdfjs__formats-common","response":"success"},{"item":"rdfjs__namespace","response":"success"},{"item":"rdfjs__parser-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__parser-n3","response":"success"},{"item":"rdfjs__serializer-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__serializer-jsonld-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__sink-map","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__term-set","response":"success"},{"item":"rdfjs__to-ntriples","response":"success"},{"item":"rdflib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"re-base","response":"success"},{"item":"reach__alert","response":"success"},{"item":"reach__alert-dialog","response":"success"},{"item":"reach__auto-id","response":"success"},{"item":"reach__combobox","response":"success"},{"item":"reach__dialog","response":"success"},{"item":"reach__menu-button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reach__rect","response":"success"},{"item":"reach__router","response":"success"},{"item":"reach__skip-nav","response":"success"},{"item":"reach__tabs","response":"success"},{"item":"reach__tooltip","response":"success"},{"item":"reach__utils","response":"success"},{"item":"reach__visually-hidden","response":"success"},{"item":"reach__window-size","response":"success"},{"item":"react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-adal","response":"success"},{"item":"react-adaptive-hooks","response":"success"},{"item":"react-add-to-calendar","response":"success"},{"item":"react-addons-create-fragment","response":"success"},{"item":"react-addons-css-transition-group","response":"success"},{"item":"react-addons-linked-state-mixin","response":"success"},{"item":"react-addons-perf","response":"success"},{"item":"react-addons-pure-render-mixin","response":"success"},{"item":"react-addons-shallow-compare","response":"success"},{"item":"react-addons-test-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-addons-transition-group","response":"success"},{"item":"react-addons-update","response":"success"},{"item":"react-albus","response":"success"},{"item":"react-alert","response":"success"},{"item":"react-amplitude","response":"success"},{"item":"react-animate-on-scroll","response":"success"},{"item":"react-app","response":"success"},{"item":"react-aria-live","response":"success"},{"item":"react-aria-menubutton","response":"success"},{"item":"react-aria-modal","response":"success"},{"item":"react-audio-player","response":"success"},{"item":"react-autocomplete","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"react-autosuggest","response":"success"},{"item":"react-avatar-editor","response":"success"},{"item":"react-axe","response":"success"},{"item":"react-beautiful-dnd","response":"success"},{"item":"react-beforeunload","response":"success"},{"item":"react-better-password","response":"success"},{"item":"react-big-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-big-scheduler","response":"success"},{"item":"react-blessed","response":"success"},{"item":"react-body-classname","response":"success"},{"item":"react-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-bootstrap-date-picker","response":"success"},{"item":"react-bootstrap-daterangepicker","response":"success"},{"item":"react-bootstrap-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-bootstrap-table-next","response":"success"},{"item":"react-bootstrap-table2-filter","response":"success"},{"item":"react-bootstrap-table2-paginator","response":"success"},{"item":"react-bootstrap-table2-toolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-bootstrap-typeahead","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-breadcrumbs","response":"success"},{"item":"react-breadcrumbs-dynamic","response":"success"},{"item":"react-broadcast","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-burger-menu","response":"success"},{"item":"react-bytesize-icons","response":"success"},{"item":"react-cache","response":"success"},{"item":"react-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-calendar-heatmap","response":"success"},{"item":"react-calendar-timeline","response":"success"},{"item":"react-canvas-draw","response":"success"},{"item":"react-cartographer","response":"success"},{"item":"react-chat-widget","response":"success"},{"item":"react-click-outside","response":"success"},{"item":"react-click-outside-hook","response":"success"},{"item":"react-close-on-escape","response":"success"},{"item":"react-codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-coinhive","response":"success"},{"item":"react-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-confirm","response":"success"},{"item":"react-cookies","response":"success"},{"item":"react-copy-to-clipboard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-copy-write","response":"success"},{"item":"react-count-to","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-countdown-circle-timer","response":"success"},{"item":"react-countup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-credit-cards","response":"success"},{"item":"react-cropper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-css-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-css-modules","response":"success"},{"item":"react-css-transition-replace","response":"success"},{"item":"react-csv","response":"success"},{"item":"react-currency-formatter","response":"success"},{"item":"react-custom-scrollbars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-d3-graph","response":"success"},{"item":"react-data-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"react-datagrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-date-range","response":"success"},{"item":"react-datepicker","response":"success"},{"item":"react-daterange-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"react-dates","response":"success"},{"item":"react-dev-utils","response":"success"},{"item":"react-devtools","response":"success"},{"item":"react-div-100vh","response":"success"},{"item":"react-dnd-multi-backend","response":"success"},{"item":"react-dnd-scrollzone","response":"success"},{"item":"react-document-meta","response":"success"},{"item":"react-document-title","response":"success"},{"item":"react-dom","response":"success"},{"item":"react-dom-factories","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-draft-wysiwyg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-dragtastic","response":"success"},{"item":"react-dynamic-number","response":"success"},{"item":"react-easy-chart","response":"success"},{"item":"react-easy-crop","response":"success"},{"item":"react-editext","response":"success"},{"item":"react-elemental","response":"success"},{"item":"react-email-editor","response":"success"},{"item":"react-event-listener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-fa","response":"success"},{"item":"react-facebook-login","response":"success"},{"item":"react-facebook-login-component","response":"success"},{"item":"react-fade-in","response":"success"},{"item":"react-faux-dom","response":"success"},{"item":"react-file-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-file-reader-input","response":"success"},{"item":"react-filepond","response":"success"},{"item":"react-final-form-listeners","response":"success"},{"item":"react-flag-icon-css","response":"success"},{"item":"react-flags-select","response":"success"},{"item":"react-flatpickr","response":"success"},{"item":"react-flex","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-flexr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-fontawesome","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-form","response":"success"},{"item":"react-foundation","response":"success"},{"item":"react-frame-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-frontload","response":"success"},{"item":"react-gamepad","response":"success"},{"item":"react-gateway","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-geosuggest","response":"success"},{"item":"react-github-button","response":"success"},{"item":"react-global-configuration","response":"success"},{"item":"react-google-login-component","response":"success"},{"item":"react-google-maps-loader","response":"success"},{"item":"react-google-places-suggest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-google-recaptcha","response":"success"},{"item":"react-gravatar","response":"success"},{"item":"react-grid-layout","response":"success"},{"item":"react-gtm-module","response":"success"},{"item":"react-hamburger-menu","response":"success"},{"item":"react-hammerjs","response":"success"},{"item":"react-headroom","response":"success"},{"item":"react-helmet","response":"success"},{"item":"react-helmet-with-visor","response":"success"},{"item":"react-highcharts","response":"success"},{"item":"react-highlight","response":"success"},{"item":"react-highlight-words","response":"success"},{"item":"react-highlight.js","response":"success"},{"item":"react-highlighter","response":"success"},{"item":"react-holder","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"react-hook-mousetrap","response":"success"},{"item":"react-hooks-helper","response":"success"},{"item":"react-howler","response":"success"},{"item":"react-html-parser","response":"success"},{"item":"react-hyperscript","response":"success"},{"item":"react-icofont","response":"success"},{"item":"react-icon-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-image-crop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"react-image-fallback","response":"success"},{"item":"react-image-gallery","response":"success"},{"item":"react-image-magnify","response":"success"},{"item":"react-imageloader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-images","response":"success"},{"item":"react-imgix","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-imgpro","response":"success"},{"item":"react-immutable-proptypes","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-infinite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-calendar","response":"success"},{"item":"react-infinite-scroll-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-input-autosize","response":"success"},{"item":"react-input-calendar","response":"success"},{"item":"react-input-mask","response":"success"},{"item":"react-inspector","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-instantsearch","response":"success"},{"item":"react-instantsearch-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-interactive","response":"success"},{"item":"react-intl-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-is","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-is-deprecated","response":"success"},{"item":"react-js-pagination","response":"success"},{"item":"react-json","response":"success"},{"item":"react-json-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-jsonschema-form","response":"success"},{"item":"react-kawaii","response":"success"},{"item":"react-lazy-load-image-component","response":"success"},{"item":"react-lazyload","response":"success"},{"item":"react-lazylog","response":"success"},{"item":"react-leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-leaflet-markercluster","response":"success"},{"item":"react-leaflet-sidebarv2","response":"success"},{"item":"react-lifecycle-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-lifecycles-compat","response":"success"},{"item":"react-linkify","response":"success"},{"item":"react-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-loadable","response":"success"},{"item":"react-loadable-visibility","response":"success"},{"item":"react-loader","response":"success"},{"item":"react-loader-spinner","response":"success"},{"item":"react-lottie","response":"success"},{"item":"react-mailchimp-subscribe","response":"success"},{"item":"react-map-gl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-maskedinput","response":"success"},{"item":"react-material-ui-form-validator","response":"success"},{"item":"react-mathquill","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-mce","response":"success"},{"item":"react-mdl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-measure","response":"success"},{"item":"react-medium-image-zoom","response":"success"},{"item":"react-mentions","response":"success"},{"item":"react-messenger-checkbox","response":"success"},{"item":"react-mic","response":"success"},{"item":"react-mixin","response":"success"},{"item":"react-modal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"react-motion","response":"success"},{"item":"react-motion-loop","response":"success"},{"item":"react-motion-slider","response":"success"},{"item":"react-motion-ui-pack","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-actionsheet","response":"success"},{"item":"react-native-android-taskdescription","response":"success"},{"item":"react-native-app-intro-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-app-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-appsflyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-audio","response":"success"},{"item":"react-native-auth0","response":"success"},{"item":"react-native-autocomplete-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-awesome-card-io","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-background-downloader","response":"success"},{"item":"react-native-background-timer","response":"success"},{"item":"react-native-bluetooth-serial","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendar-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-canvas","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-charts-wrapper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-check-box","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-communications","response":"success"},{"item":"react-native-community__cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-native-custom-tabs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-datawedge-intents","response":"success"},{"item":"react-native-datepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialogflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-doc-viewer","response":"success"},{"item":"react-native-document-picker","response":"success"},{"item":"react-native-dotenv","response":"success"},{"item":"react-native-draggable-flatlist","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer-layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-easy-upgrade","response":"success"},{"item":"react-native-elevated-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fbsdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fetch-blob","response":"success"},{"item":"react-native-flip-card","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-google-signin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-honeywell-scanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-htmlview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-huawei-protected-apps","response":"success"},{"item":"react-native-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-incall-manager","response":"success"},{"item":"react-native-indicators","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-input-spinner","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-joi","response":"success"},{"item":"react-native-keep-awake","response":"success"},{"item":"react-native-keyboard-spacer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-loading-spinner-overlay","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-maps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-design-searchbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-dropdown","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-textfield","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mixpanel","response":"success"},{"item":"react-native-modal-dropdown","response":"success"},{"item":"react-native-modal-filter-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-modalbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-navbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-orientation","response":"success"},{"item":"react-native-pdf-lib","response":"success"},{"item":"react-native-percentage-circle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-phone-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-photo-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-platform-touchable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-popup-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-privacy-snapshot","response":"success"},{"item":"react-native-push-notification","response":"success"},{"item":"react-native-qrcode","response":"success"},{"item":"react-native-read-more-text","response":"success"},{"item":"react-native-referrer","response":"success"},{"item":"react-native-restart","response":"success"},{"item":"react-native-rss-parser","response":"success"},{"item":"react-native-safari-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scaled-image","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scrollable-tab-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"react-native-sensor-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-settings-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share-extension","response":"success"},{"item":"react-native-share-menu","response":"success"},{"item":"react-native-signature-capture","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snackbar-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snap-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sqlite-storage","response":"success"},{"item":"react-native-star-rating","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-status-bar-height","response":"success"},{"item":"react-native-svg-charts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-svg-uri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-swiper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-native-tab-navigator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-text-input-mask","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-toast-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-touch-id","response":"success"},{"item":"react-native-uuid","response":"success"},{"item":"react-native-uuid-generator","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-version-check","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-version-number","response":"success"},{"item":"react-native-video","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-video-player","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-view-pdf","response":"success"},{"item":"react-native-webrtc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-zeroconf","response":"success"},{"item":"react-native-zss-rich-text-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-no-ssr","response":"success"},{"item":"react-notification-system","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notification-system-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notify-toast","response":"success"},{"item":"react-numeric-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"react-offcanvas","response":"success"},{"item":"react-onclickoutside","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-onsenui","response":"success"},{"item":"react-outside-click-handler","response":"success"},{"item":"react-overlays","response":"success"},{"item":"react-paginate","response":"success"},{"item":"react-panelgroup","response":"success"},{"item":"react-pdf","response":"success"},{"item":"react-phone-number-input","response":"success"},{"item":"react-photoswipe","response":"success"},{"item":"react-places-autocomplete","response":"success"},{"item":"react-plaid-link","response":"success"},{"item":"react-plotly.js","response":"success"},{"item":"react-plyr","response":"success"},{"item":"react-pointable","response":"success"},{"item":"react-popover","response":"success"},{"item":"react-portal","response":"success"},{"item":"react-primitives","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-props-decorators","response":"success"},{"item":"react-qr-reader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-query","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-radio-group","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-rangeslider","response":"success"},{"item":"react-recaptcha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-recaptcha-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-reconciler","response":"success"},{"item":"react-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-redux-epic","response":"success"},{"item":"react-redux-i18n","response":"success"},{"item":"react-redux-toastr","response":"success"},{"item":"react-relay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-request","response":"success"},{"item":"react-resizable","response":"success"},{"item":"react-resize-detector","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"react-resolver","response":"success"},{"item":"react-responsive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-bootstrap","response":"success"},{"item":"react-router-config","response":"success"},{"item":"react-router-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-guard","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-hash-link","response":"success"},{"item":"react-router-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-navigation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-navigation-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-param-link","response":"success"},{"item":"react-router-redux","response":"success"},{"item":"react-router-tabs","response":"success"},{"item":"react-rte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-s-alert","response":"success"},{"item":"react-scroll","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-scroll-into-view-if-needed","response":"success"},{"item":"react-scroll-rotate","response":"success"},{"item":"react-scrollable-anchor","response":"success"},{"item":"react-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"react-scrollbar-size","response":"success"},{"item":"react-scrollspy","response":"success"},{"item":"react-select","response":"success"},{"item":"react-shadow-dom-retarget-events","response":"success"},{"item":"react-share","response":"success"},{"item":"react-show-more","response":"success"},{"item":"react-side-effect","response":"success"},{"item":"react-sidebar","response":"success"},{"item":"react-signature-canvas","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-simple-maps","response":"success"},{"item":"react-sizes","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-sketchapp","response":"success"},{"item":"react-slick","response":"success"},{"item":"react-slider","response":"success"},{"item":"react-smooth-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"react-sortable-tree","response":"success"},{"item":"react-sortable-tree-theme-file-explorer","response":"success"},{"item":"react-sound","response":"success"},{"item":"react-sparklines","response":"success"},{"item":"react-spinkit","response":"success"},{"item":"react-spinner","response":"success"},{"item":"react-splitter-layout","response":"success"},{"item":"react-star-rating-component","response":"success"},{"item":"react-stars","response":"success"},{"item":"react-sticky","response":"success"},{"item":"react-sticky-el","response":"success"},{"item":"react-stickynode","response":"success"},{"item":"react-stripe-elements","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-svg-inline","response":"success"},{"item":"react-svg-pan-zoom","response":"success"},{"item":"react-swf","response":"success"},{"item":"react-swipe","response":"success"},{"item":"react-swipeable-views","response":"success"},{"item":"react-swipeable-views-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-syntax-highlighter","response":"success"},{"item":"react-table","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-table-filter","response":"success"},{"item":"react-tabs","response":"success"},{"item":"react-tabs-redux","response":"success"},{"item":"react-tag-autocomplete","response":"success"},{"item":"react-tag-input","response":"success"},{"item":"react-tagcloud","response":"success"},{"item":"react-tagsinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"react-tap-event-plugin","response":"success"},{"item":"react-test-renderer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-text-mask","response":"success"},{"item":"react-text-truncate","response":"success"},{"item":"react-textarea-autosize","response":"success"},{"item":"react-timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-timeout","response":"success"},{"item":"react-toast-notifications","response":"success"},{"item":"react-toastr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-toggle","response":"success"},{"item":"react-tooltip","response":"success"},{"item":"react-touch","response":"success"},{"item":"react-tracking","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-transition-group","response":"success"},{"item":"react-treeview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-truncate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"react-twitter-auth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-typing-animation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-typist","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-ultimate-pagination","response":"success"},{"item":"react-user-tour","response":"success"},{"item":"react-vega","response":"success"},{"item":"react-vertical-timeline-component","response":"success"},{"item":"react-virtual-keyboard","response":"success"},{"item":"react-virtualized","response":"success"},{"item":"react-virtualized-auto-sizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-virtualized-select","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-visibility-sensor","response":"success"},{"item":"react-wait","response":"success"},{"item":"react-weui","response":"success"},{"item":"react-widgets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-widgets-moment","response":"success"},{"item":"react-window","response":"success"},{"item":"react-window-infinite-loader","response":"success"},{"item":"react-window-size","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-with-styles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-wow","response":"success"},{"item":"react-youtube","response":"success"},{"item":"react-youtube-embed","response":"success"},{"item":"reactable","response":"success"},{"item":"reactabular-dnd","response":"success"},{"item":"reactabular-sticky","response":"success"},{"item":"reactabular-table","response":"success"},{"item":"reactcss","response":"success"},{"item":"reactour","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reactstrap","response":"success"},{"item":"read","response":"success"},{"item":"read-package-tree","response":"success"},{"item":"readable-stream","response":"success"},{"item":"readdir-stream","response":"success"},{"item":"readline-sync","response":"success"},{"item":"readline-transform","response":"success"},{"item":"readmore-js","response":"success"},{"item":"reapop","response":"success"},{"item":"rebass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebind-host","response":"success"},{"item":"recaptcha2","response":"success"},{"item":"recase","response":"success"},{"item":"recharts","response":"success"},{"item":"recharts-scale","response":"success"},{"item":"rechoir","response":"success"},{"item":"recluster","response":"success"},{"item":"recompose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"reconnect-core","response":"success"},{"item":"reconnectingwebsocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"recorder-js","response":"success"},{"item":"recurly__recurly-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"recursive-readdir","response":"success"},{"item":"redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-errors","response":"success"},{"item":"redis-info","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"redis-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-rate-limiter","response":"success"},{"item":"redis-scripto","response":"success"},{"item":"redlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"redux-action","response":"success"},{"item":"redux-action-utils","response":"success"},{"item":"redux-actions","response":"success"},{"item":"redux-api-middleware","response":"success"},{"item":"redux-async-queue","response":"success"},{"item":"redux-auth-wrapper","response":"success"},{"item":"redux-batched-subscribe","response":"success"},{"item":"redux-cablecar","response":"success"},{"item":"redux-debounced","response":"success"},{"item":"redux-devtools","response":"success"},{"item":"redux-devtools-dock-monitor","response":"success"},{"item":"redux-devtools-log-monitor","response":"success"},{"item":"redux-doghouse","response":"success"},{"item":"redux-duck","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-first-router","response":"success"},{"item":"redux-first-router-link","response":"success"},{"item":"redux-first-router-restore-scroll","response":"success"},{"item":"redux-first-routing","response":"success"},{"item":"redux-form","response":"success"},{"item":"redux-immutable","response":"success"},{"item":"redux-immutable-state-invariant","response":"success"},{"item":"redux-infinite-scroll","response":"success"},{"item":"redux-injectable-store","response":"success"},{"item":"redux-localstorage","response":"success"},{"item":"redux-localstorage-debounce","response":"success"},{"item":"redux-localstorage-filter","response":"success"},{"item":"redux-logger","response":"success"},{"item":"redux-mock-store","response":"success"},{"item":"redux-optimistic-ui","response":"success"},{"item":"redux-orm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"redux-pack","response":"success"},{"item":"redux-persist-transform-encrypt","response":"success"},{"item":"redux-persist-transform-filter","response":"success"},{"item":"redux-promise","response":"success"},{"item":"redux-promise-listener","response":"success"},{"item":"redux-recycle","response":"success"},{"item":"redux-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"redux-saga-routines","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-saga-tester","response":"success"},{"item":"redux-seamless-immutable","response":"success"},{"item":"redux-sentry-middleware","response":"success"},{"item":"redux-shortcuts","response":"success"},{"item":"redux-socket.io","response":"success"},{"item":"redux-state-sync","response":"success"},{"item":"redux-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"redux-storage-engine-jsurl","response":"success"},{"item":"redux-storage-engine-localstorage","response":"success"},{"item":"redux-test-utils","response":"success"},{"item":"redux-testkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"redux-ui","response":"success"},{"item":"ref","response":"success"},{"item":"ref-array","response":"success"},{"item":"ref-array-di","response":"success"},{"item":"ref-napi","response":"success"},{"item":"ref-struct","response":"success"},{"item":"ref-struct-di","response":"success"},{"item":"ref-union","response":"success"},{"item":"ref-union-di","response":"success"},{"item":"reflexbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"reflux","response":"success"},{"item":"refractor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"refresh-fetch","response":"success"},{"item":"registry-auth-token","response":"success"},{"item":"regression","response":"success"},{"item":"rehype-react","response":"success"},{"item":"relateurl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"relaxed-json","response":"success"},{"item":"relay-compiler","response":"success"},{"item":"relay-config","response":"success"},{"item":"relay-runtime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"relay-test-utils","response":"success"},{"item":"rellax","response":"success"},{"item":"remarkable","response":"success"},{"item":"remote-origin-url","response":"success"},{"item":"remote-redux-devtools","response":"success"},{"item":"remotedev-serialize","response":"success"},{"item":"remove-markdown","response":"success"},{"item":"rename","response":"success"},{"item":"repeat-element","response":"success"},{"item":"repeat-string","response":"success"},{"item":"repeating","response":"success"},{"item":"replace-ext","response":"success"},{"item":"replacestream","response":"success"},{"item":"request","response":"success"},{"item":"request-as-curl","response":"success"},{"item":"request-debug","response":"success"},{"item":"request-ip","response":"success"},{"item":"request-promise","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"request-promise-native","response":"success"},{"item":"request-stats","response":"success"},{"item":"requestidlecallback","response":"success"},{"item":"requestretry","response":"success"},{"item":"require-dir","response":"success"},{"item":"require-directory","response":"success"},{"item":"require-from-string","response":"success"},{"item":"require-relative","response":"success"},{"item":"requireindex","response":"success"},{"item":"requirejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'Require', but here has type 'NodeRequire'.\n../DefinitelyTyped/types/node/module.d.ts(57,14): error TS2300: Duplicate identifier 'Module'.\n../DefinitelyTyped/types/requirejs/index.d.ts(38,11): error TS2300: Duplicate identifier 'Module'.\n"},{"item":"requirejs-domready","response":"success"},{"item":"requires-port","response":"success"},{"item":"resemblejs","response":"success"},{"item":"reserved-words","response":"success"},{"item":"reservoir","response":"success"},{"item":"resize-img","response":"success"},{"item":"resize-observer-browser","response":"success"},{"item":"resolve","response":"success"},{"item":"resolve-options","response":"success"},{"item":"resolve-protobuf-schema","response":"success"},{"item":"resourcejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"response-time","response":"success"},{"item":"responselike","response":"success"},{"item":"rest","response":"success"},{"item":"restangular","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"restful.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"restify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restify-cookies","response":"success"},{"item":"restify-cors-middleware","response":"success"},{"item":"restify-errors","response":"success"},{"item":"restify-plugins","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restler","response":"success"},{"item":"restling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"rethinkdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"retinajs","response":"success"},{"item":"retry","response":"success"},{"item":"retry-as-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"revalidate","response":"success"},{"item":"revalidator","response":"success"},{"item":"reveal","response":"success"},{"item":"rewire","response":"success"},{"item":"rfc2047","response":"success"},{"item":"rfdc","response":"success"},{"item":"rgrove__parse-xml","response":"success"},{"item":"rheostat","response":"success"},{"item":"rickshaw","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/rickshaw"},{"item":"right-align","response":"success"},{"item":"rijndael-js","response":"success"},{"item":"rimraf","response":"success"},{"item":"ringbufferjs","response":"success"},{"item":"riot-api-nodejs","response":"success"},{"item":"riot-games-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"riot-route","response":"success"},{"item":"riotcontrol","response":"success"},{"item":"riotjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ripemd160","response":"success"},{"item":"rison","response":"success"},{"item":"rivets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rmc-drawer","response":"success"},{"item":"rmfr","response":"success"},{"item":"rn-app-upgrade","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"rn-fetch-blob","response":"success"},{"item":"roarr","response":"success"},{"item":"robust-point-in-polygon","response":"success"},{"item":"rocksdb","response":"success"},{"item":"rockset","response":"success"},{"item":"roll","response":"success"},{"item":"rolling-rate-limiter","response":"success"},{"item":"rollup-plugin-buble","response":"success"},{"item":"rollup-plugin-json","response":"success"},{"item":"rollup-plugin-node-builtins","response":"success"},{"item":"rollup-plugin-node-globals","response":"success"},{"item":"rollup-plugin-peer-deps-external","response":"success"},{"item":"rollup-plugin-postcss","response":"success"},{"item":"rollup-plugin-progress","response":"success"},{"item":"rollup-plugin-size-snapshot","response":"success"},{"item":"rollup-plugin-sourcemaps","response":"success"},{"item":"rollup-plugin-url","response":"success"},{"item":"rollup-plugin-visualizer","response":"success"},{"item":"rollup__plugin-virtual","response":"success"},{"item":"roman-numerals","response":"success"},{"item":"ronomon__crypto-async","response":"success"},{"item":"rosie","response":"success"},{"item":"roslib","response":"success"},{"item":"route-parser","response":"success"},{"item":"routie","response":"success"},{"item":"rox-browser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-react-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"royalslider","response":"success"},{"item":"rpio","response":"success"},{"item":"rrc","response":"success"},{"item":"rsmq-worker","response":"success"},{"item":"rsocket-core","response":"success"},{"item":"rsocket-flowable","response":"success"},{"item":"rsocket-tcp-client","response":"success"},{"item":"rsocket-tcp-server","response":"success"},{"item":"rsocket-types","response":"success"},{"item":"rsocket-websocket-client","response":"success"},{"item":"rsocket-websocket-server","response":"success"},{"item":"rss","response":"success"},{"item":"rsvp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertyDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null"},{"item":"rsync","response":"success"},{"item":"rtl-detect","response":"success"},{"item":"rtlcss","response":"success"},{"item":"rtp-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rtree","response":"success"},{"item":"run-parallel","response":"success"},{"item":"run-parallel-limit","response":"success"},{"item":"run-sequence","response":"success"},{"item":"runes","response":"success"},{"item":"rwlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"rx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-core","response":"success"},{"item":"rx-core-binding","response":"success"},{"item":"rx-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n"},{"item":"rx-lite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-aggregates","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-backpressure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-coincidence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-experimental","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-joinpatterns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-virtualtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-node","response":"success"},{"item":"rx.wamp","response":"success"},{"item":"s3-download-stream","response":"success"},{"item":"s3-upload-stream","response":"success"},{"item":"s3-uploader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"s3rver","response":"success"},{"item":"sade","response":"success"},{"item":"safari-extension","response":"success"},{"item":"safari-extension-content","response":"success"},{"item":"safe-compare","response":"success"},{"item":"safe-json-stringify","response":"success"},{"item":"safe-regex","response":"success"},{"item":"safe-timers","response":"success"},{"item":"safer-buffer","response":"success"},{"item":"sails.io.js","response":"success"},{"item":"sailthru-client","response":"success"},{"item":"saml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"saml2-js","response":"success"},{"item":"saml20","response":"success"},{"item":"samlp","response":"success"},{"item":"sammy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sanctuary","response":"success"},{"item":"sandboxed-module","response":"success"},{"item":"sane","response":"success"},{"item":"sane-email-validation","response":"success"},{"item":"sanitize-html","response":"success"},{"item":"sanitizer","response":"success"},{"item":"sap__xsenv","response":"success"},{"item":"sarif","response":"success"},{"item":"sasl-anonymous","response":"success"},{"item":"sasl-digest-md5","response":"success"},{"item":"sasl-external","response":"success"},{"item":"sasl-plain","response":"success"},{"item":"sasl-scram-sha-1","response":"success"},{"item":"saslmechanisms","response":"success"},{"item":"saslprep","response":"success"},{"item":"sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sass-graph","response":"success"},{"item":"sat","response":"success"},{"item":"satnav","response":"success"},{"item":"save-csv","response":"success"},{"item":"sawtooth-sdk","response":"success"},{"item":"sax","response":"success"},{"item":"sax-stream","response":"success"},{"item":"saywhen","response":"success"},{"item":"sbd","response":"success"},{"item":"sc-auth","response":"success"},{"item":"sc-broker","response":"success"},{"item":"sc-broker-cluster","response":"success"},{"item":"sc-channel","response":"success"},{"item":"sc-errors","response":"success"},{"item":"sc-framework-health-check","response":"success"},{"item":"sc-hot-reboot","response":"success"},{"item":"scalike","response":"success"},{"item":"scc-broker-client","response":"success"},{"item":"schedule","response":"success"},{"item":"scheduler","response":"success"},{"item":"schema-registry","response":"success"},{"item":"schwifty","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"scoped-http-client","response":"success"},{"item":"scrambo","response":"success"},{"item":"screeps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"screeps-profiler","response":"success"},{"item":"script-ext-html-webpack-plugin","response":"success"},{"item":"scriptable-ios","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scriptjs","response":"success"},{"item":"scroll","response":"success"},{"item":"scroll-into-view","response":"success"},{"item":"scroll-to-element","response":"success"},{"item":"scrollbooster","response":"success"},{"item":"scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scrollparent","response":"success"},{"item":"scrollreveal","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"secure-json-parse","response":"success"},{"item":"secure-password","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"secure-random-password","response":"success"},{"item":"seed-random","response":"success"},{"item":"seededshuffle","response":"success"},{"item":"seedrandom","response":"success"},{"item":"seen","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"segment-analytics","response":"success"},{"item":"select2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"selectables","response":"success"},{"item":"selectize","response":"success"},{"item":"selenium-standalone","response":"success"},{"item":"selenium-webdriver","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"semantic-release","response":"success"},{"item":"semantic-ui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/semantic-ui"},{"item":"semantic-ui-accordion","response":"success"},{"item":"semantic-ui-api","response":"success"},{"item":"semantic-ui-checkbox","response":"success"},{"item":"semantic-ui-dimmer","response":"success"},{"item":"semantic-ui-dropdown","response":"success"},{"item":"semantic-ui-embed","response":"success"},{"item":"semantic-ui-form","response":"success"},{"item":"semantic-ui-modal","response":"success"},{"item":"semantic-ui-nag","response":"success"},{"item":"semantic-ui-popup","response":"success"},{"item":"semantic-ui-progress","response":"success"},{"item":"semantic-ui-rating","response":"success"},{"item":"semantic-ui-search","response":"success"},{"item":"semantic-ui-shape","response":"success"},{"item":"semantic-ui-sidebar","response":"success"},{"item":"semantic-ui-site","response":"success"},{"item":"semantic-ui-sticky","response":"success"},{"item":"semantic-ui-tab","response":"success"},{"item":"semantic-ui-transition","response":"success"},{"item":"semantic-ui-visibility","response":"success"},{"item":"semaphore","response":"success"},{"item":"semver","response":"success"},{"item":"semver-compare","response":"success"},{"item":"semver-sort","response":"success"},{"item":"semver-stable","response":"success"},{"item":"semver-utils","response":"success"},{"item":"sencha_touch","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"send","response":"success"},{"item":"sendmail","response":"success"},{"item":"seneca","response":"success"},{"item":"sentry__webpack-plugin","response":"success"},{"item":"sequelize","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sequelize-cursor-pagination","response":"success"},{"item":"sequelize-fixtures","response":"success"},{"item":"sequencify","response":"success"},{"item":"sequester","response":"success"},{"item":"serialize-javascript","response":"success"},{"item":"serialport","response":"success"},{"item":"serve-favicon","response":"success"},{"item":"serve-handler","response":"success"},{"item":"serve-index","response":"success"},{"item":"serve-static","response":"success"},{"item":"server","response":"success"},{"item":"server-destroy","response":"success"},{"item":"serverless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"serverless-jest-plugin","response":"success"},{"item":"service-worker-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(15,32): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(26,18): error TS2304: Cannot find name 'Client'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(44,34): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(47,50): error TS2304: Cannot find name 'PushEvent'.\n"},{"item":"servicenow","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow/index.d.ts(71,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"servicenow-london","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/servicenow-london\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow-london/Workflow.d.ts(1,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"serviceworker-webpack-plugin","response":"success"},{"item":"session-file-store","response":"success"},{"item":"set-cookie-parser","response":"success"},{"item":"set-interval-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"set-link","response":"success"},{"item":"set-value","response":"success"},{"item":"setasap","response":"success"},{"item":"setimmediate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"settings","response":"success"},{"item":"setup-polly-jest","response":"success"},{"item":"sha","response":"success"},{"item":"sha.js","response":"success"},{"item":"sha1","response":"success"},{"item":"sha256","response":"success"},{"item":"shallow-equals","response":"success"},{"item":"shallowequal","response":"success"},{"item":"shapefile","response":"success"},{"item":"sharedb","response":"success"},{"item":"sharepoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'kind' of undefined\n"},{"item":"sharp","response":"success"},{"item":"shasum","response":"success"},{"item":"shebang-command","response":"success"},{"item":"sheetify","response":"success"},{"item":"shell-escape","response":"success"},{"item":"shell-quote","response":"success"},{"item":"shelljs","response":"success"},{"item":"shelljs-exec-proxy","response":"success"},{"item":"shevyjs","response":"success"},{"item":"shimmer","response":"success"},{"item":"shipit-cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shipit-utils","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shopify-buy","response":"success"},{"item":"shorten-repo-url","response":"success"},{"item":"shortid","response":"success"},{"item":"shot","response":"success"},{"item":"should-sinon","response":"success"},{"item":"showdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"shpjs","response":"success"},{"item":"shrink-ray","response":"success"},{"item":"shuffle-array","response":"success"},{"item":"shuffle-seed","response":"success"},{"item":"sic-ecies","response":"success"},{"item":"sic-list","response":"success"},{"item":"siema","response":"success"},{"item":"siesta","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sigmajs","response":"success"},{"item":"sigmund","response":"success"},{"item":"signal-exit","response":"success"},{"item":"signale","response":"success"},{"item":"signalfx","response":"success"},{"item":"signalr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"signalr-no-jquery","response":"success"},{"item":"signals","response":"success"},{"item":"signature_pad","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simmerjs","response":"success"},{"item":"simonwep__selection-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simpl-schema","response":"success"},{"item":"simple-assign","response":"success"},{"item":"simple-cw-node","response":"success"},{"item":"simple-icons","response":"success"},{"item":"simple-lru","response":"success"},{"item":"simple-mock","response":"success"},{"item":"simple-oauth2","response":"success"},{"item":"simple-peer","response":"success"},{"item":"simple-query-string","response":"success"},{"item":"simple-url-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simple-websocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simple-xml","response":"success"},{"item":"simplebar","response":"success"},{"item":"simplecrawler","response":"success"},{"item":"simplemde","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simplesmtp","response":"success"},{"item":"simplestorage.js","response":"success"},{"item":"simulant","response":"success"},{"item":"single-line-log","response":"success"},{"item":"single-spa-react","response":"success"},{"item":"sinon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sinon-as-promised","response":"success"},{"item":"sinon-chai","response":"success"},{"item":"sinon-chrome","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sinon-express-mock","response":"success"},{"item":"sinon-mongoose","response":"success"},{"item":"sinon-stub-promise","response":"success"},{"item":"sinon-test","response":"success"},{"item":"sinonjs__fake-timers","response":"success"},{"item":"sipml","response":"success"},{"item":"sitemap2","response":"success"},{"item":"six-runtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sizeof","response":"success"},{"item":"sizzle","response":"success"},{"item":"sjcl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"skatejs","response":"success"},{"item":"sketchapp","response":"success"},{"item":"ski","response":"success"},{"item":"skmeans","response":"success"},{"item":"skyway","response":"success"},{"item":"slack-mock","response":"success"},{"item":"slack-node","response":"success"},{"item":"slack-winston","response":"success"},{"item":"slackdown","response":"success"},{"item":"slackify-html","response":"success"},{"item":"slate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-base64-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-html-serializer","response":"success"},{"item":"slate-irc","response":"success"},{"item":"slate-plain-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slate-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sleep","response":"success"},{"item":"slice-ansi","response":"success"},{"item":"slick-carousel","response":"success"},{"item":"slickgrid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slideout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"slimerjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(431,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(432,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(433,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(434,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(435,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"sloc","response":"success"},{"item":"slocket","response":"success"},{"item":"slonik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"slug","response":"success"},{"item":"sm-crypto","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-fox-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-truncate","response":"success"},{"item":"smartwizard","response":"success"},{"item":"smooth-scroll","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"smoothscroll-polyfill","response":"success"},{"item":"smpte-timecode","response":"success"},{"item":"smshelper","response":"success"},{"item":"smtp-server","response":"success"},{"item":"smtpapi","response":"success"},{"item":"snakecase-keys","response":"success"},{"item":"snappy","response":"success"},{"item":"snapsvg","response":"success"},{"item":"snazzy-info-window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snekfetch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snowball-stemmers","response":"success"},{"item":"sns-validator","response":"success"},{"item":"sntp","response":"success"},{"item":"socket.io","response":"success"},{"item":"socket.io-client","response":"success"},{"item":"socket.io-emitter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"socket.io-file","response":"success"},{"item":"socket.io-p2p","response":"success"},{"item":"socket.io-parser","response":"success"},{"item":"socket.io-redis","response":"success"},{"item":"socket.io.users","response":"success"},{"item":"socketcluster","response":"success"},{"item":"socketcluster-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"socketcluster-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"socketio-jwt","response":"success"},{"item":"socketio-jwt-auth","response":"success"},{"item":"socketio-wildcard","response":"success"},{"item":"socketty","response":"success"},{"item":"sockjs","response":"success"},{"item":"sockjs-client","response":"success"},{"item":"sodium-native","response":"success"},{"item":"solid-auth-client","response":"success"},{"item":"solid__react","response":"success"},{"item":"solr-client","response":"success"},{"item":"solution-center-communicator","response":"success"},{"item":"sonic-boom","response":"success"},{"item":"sort-array","response":"success"},{"item":"sort-object-keys","response":"success"},{"item":"sortablejs","response":"success"},{"item":"sorted-object","response":"success"},{"item":"sortobject","response":"success"},{"item":"soundjs","response":"success"},{"item":"soundmanager2","response":"success"},{"item":"soupbintcp","response":"success"},{"item":"source-list-map","response":"success"},{"item":"source-map-support","response":"success"},{"item":"space-pen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"spark-md5","response":"success"},{"item":"sparkpost","response":"success"},{"item":"sparql-http-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"sparqljs","response":"success"},{"item":"sparse-bitfield","response":"success"},{"item":"spatialite","response":"success"},{"item":"spdx-correct","response":"success"},{"item":"spdx-satisfies","response":"success"},{"item":"spdy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"speakeasy","response":"success"},{"item":"speakingurl","response":"success"},{"item":"spected","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"spectrogram","response":"success"},{"item":"spectrum","response":"success"},{"item":"spellchecker","response":"success"},{"item":"split","response":"success"},{"item":"split.js","response":"success"},{"item":"split2","response":"success"},{"item":"splitpanes","response":"success"},{"item":"splunk-bunyan-logger","response":"success"},{"item":"splunk-logging","response":"success"},{"item":"spotify-api","response":"success"},{"item":"spotify-node-applescript","response":"success"},{"item":"spotify-web-api-node","response":"success"},{"item":"spotify-web-playback-sdk","response":"success"},{"item":"sprintf","response":"success"},{"item":"sprintf-js","response":"success"},{"item":"sql-bricks","response":"success"},{"item":"sql-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sql-template","response":"success"},{"item":"sql.js","response":"success"},{"item":"sqlanywhere","response":"success"},{"item":"sqlite3","response":"success"},{"item":"sqlite3-promise","response":"success"},{"item":"sqlstring","response":"success"},{"item":"sqs-producer","response":"success"},{"item":"square-connect","response":"success"},{"item":"squirejs","response":"success"},{"item":"squirrelly","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"srp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"ssb-keys","response":"success"},{"item":"ssdeep","response":"success"},{"item":"ssh-key-decrypt","response":"success"},{"item":"ssh2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ssh2-sftp-client","response":"success"},{"item":"ssh2-streams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sshpk","response":"success"},{"item":"ssri","response":"success"},{"item":"stack-mapper","response":"success"},{"item":"stack-trace","response":"success"},{"item":"stack-utils","response":"success"},{"item":"stale-lru-cache","response":"success"},{"item":"stampit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"stamplay-js-sdk","response":"success"},{"item":"standard-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"standard-error","response":"success"},{"item":"standard-http-error","response":"success"},{"item":"standard-version","response":"success"},{"item":"start-server-webpack-plugin","response":"success"},{"item":"starwars-names","response":"success"},{"item":"stat-mode","response":"success"},{"item":"static-eval","response":"success"},{"item":"staticmaps","response":"success"},{"item":"stats-lite","response":"success"},{"item":"stats.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"statsd-client","response":"success"},{"item":"statuses","response":"success"},{"item":"std-mocks","response":"success"},{"item":"stdin","response":"success"},{"item":"stdout-stream","response":"success"},{"item":"steam","response":"success"},{"item":"steam-client","response":"success"},{"item":"steam-login","response":"success"},{"item":"steam-totp","response":"success"},{"item":"steamid","response":"success"},{"item":"steed","response":"success"},{"item":"stemmer","response":"success"},{"item":"sticky-cluster","response":"success"},{"item":"sticky-session","response":"success"},{"item":"stompit","response":"success"},{"item":"stompjs","response":"success"},{"item":"stoppable","response":"success"},{"item":"stopword","response":"success"},{"item":"storage-helper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"store","response":"success"},{"item":"storybook-addon-jsx","response":"success"},{"item":"storybook-react-router","response":"success"},{"item":"storybook-readme","response":"success"},{"item":"storybook__addon-info","response":"success"},{"item":"storybook__polymer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"strange","response":"success"},{"item":"stream-array","response":"success"},{"item":"stream-buffers","response":"success"},{"item":"stream-chain","response":"success"},{"item":"stream-csv-as-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-demux","response":"success"},{"item":"stream-each","response":"success"},{"item":"stream-fork","response":"success"},{"item":"stream-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-meter","response":"success"},{"item":"stream-series","response":"success"},{"item":"stream-shift","response":"success"},{"item":"stream-throttle","response":"success"},{"item":"stream-to-array","response":"success"},{"item":"stream-to-promise","response":"success"},{"item":"stream-to-string","response":"success"},{"item":"streaming-json-stringify","response":"success"},{"item":"streamjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"streamtest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stremio-addon-sdk","response":"success"},{"item":"strftime","response":"success"},{"item":"strict-uri-encode","response":"success"},{"item":"strikeentco__get","response":"success"},{"item":"string","response":"success"},{"item":"string-format","response":"success"},{"item":"string-hash","response":"success"},{"item":"string-pixel-width","response":"success"},{"item":"string-placeholder","response":"success"},{"item":"string-replace-webpack-plugin","response":"success"},{"item":"string-similarity","response":"success"},{"item":"string-strip-html","response":"success"},{"item":"string-template","response":"success"},{"item":"string_score","response":"success"},{"item":"stringify-object","response":"success"},{"item":"strip-color","response":"success"},{"item":"stripe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripe-checkout","response":"success"},{"item":"stripe-v2","response":"success"},{"item":"stripe-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripejs","response":"success"},{"item":"strman","response":"success"},{"item":"strong-cluster-control","response":"success"},{"item":"strong-error-handler","response":"success"},{"item":"strong-log-transformer","response":"success"},{"item":"strophe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophe.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophejs-plugin-roster","response":"success"},{"item":"struct","response":"success"},{"item":"structured-source","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"stubby","response":"success"},{"item":"style-search","response":"success"},{"item":"styled-components","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"styled-jsx","response":"success"},{"item":"styled-react-modal","response":"success"},{"item":"styled-system","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styled-system__css","response":"success"},{"item":"styled-system__should-forward-prop","response":"success"},{"item":"styled-system__theme-get","response":"success"},{"item":"styled-theming","response":"success"},{"item":"stylelint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stylelint-webpack-plugin","response":"success"},{"item":"stylenames","response":"success"},{"item":"styletron-engine-atomic","response":"success"},{"item":"styletron-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styletron-standard","response":"success"},{"item":"stylus","response":"success"},{"item":"subleveldown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"subscribe-ui-event","response":"success"},{"item":"subtitle","response":"success"},{"item":"succinct","response":"success"},{"item":"sudokus","response":"success"},{"item":"suitescript","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"summernote","response":"success"},{"item":"sumo-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"suncalc","response":"success"},{"item":"sunrise-sunset-js","response":"success"},{"item":"superagent","response":"success"},{"item":"superagent-bunyan","response":"success"},{"item":"superagent-no-cache","response":"success"},{"item":"superagent-prefix","response":"success"},{"item":"superagent-proxy","response":"success"},{"item":"supercluster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"supertest","response":"success"},{"item":"supertest-as-promised","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"supports-color","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svg-injector","response":"success"},{"item":"svg-intersections","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"svg-parser","response":"success"},{"item":"svg-path-bounding-box","response":"success"},{"item":"svg-path-parser","response":"success"},{"item":"svg-sprite","response":"success"},{"item":"svg-sprite-loader","response":"success"},{"item":"svg2png","response":"success"},{"item":"svg4everybody","response":"success"},{"item":"svgjs.draggable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svgjs.resize","response":"success"},{"item":"svgo","response":"success"},{"item":"svgr__rollup","response":"success"},{"item":"sw-precache","response":"success"},{"item":"sw-precache-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"swag","response":"success"},{"item":"swagger-express-middleware","response":"success"},{"item":"swagger-express-mw","response":"success"},{"item":"swagger-express-validator","response":"success"},{"item":"swagger-hapi","response":"success"},{"item":"swagger-jsdoc","response":"success"},{"item":"swagger-node-runner","response":"success"},{"item":"swagger-restify-mw","response":"success"},{"item":"swagger-sails-hook","response":"success"},{"item":"swagger-schema-official","response":"success"},{"item":"swagger-stats","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swagger-tools","response":"success"},{"item":"swagger-ui-dist","response":"success"},{"item":"swagger-ui-express","response":"success"},{"item":"swagger-ui-react","response":"success"},{"item":"swaggerize-express","response":"success"},{"item":"swe-validation","response":"success"},{"item":"swfobject","response":"success"},{"item":"swiftclick","response":"success"},{"item":"swig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swig-email-templates","response":"success"},{"item":"swipe","response":"success"},{"item":"swiper","response":"success"},{"item":"swipeview","response":"success"},{"item":"switchery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"swiz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sybase-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"sylvester","response":"success"},{"item":"sylvester-es6","response":"success"},{"item":"symbol-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"symlink-or-copy","response":"success"},{"item":"synaptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"syntax-error","response":"success"},{"item":"syslog-client","response":"success"},{"item":"systemjs","response":"success"},{"item":"tabbable","response":"success"},{"item":"table","response":"success"},{"item":"table-resolver","response":"success"},{"item":"tableau","response":"success"},{"item":"tableify","response":"success"},{"item":"tablesorter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"tabtab","response":"success"},{"item":"tabulator","response":"success"},{"item":"tabulator-tables","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"tail","response":"success"},{"item":"tampermonkey","response":"success"},{"item":"tapable","response":"success"},{"item":"tape","response":"success"},{"item":"tape-async","response":"success"},{"item":"tape-catch","response":"success"},{"item":"tape-promise","response":"success"},{"item":"tar","response":"success"},{"item":"tar-fs","response":"success"},{"item":"tar-stream","response":"success"},{"item":"tarantool-driver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"targz","response":"success"},{"item":"task-graph-runner","response":"success"},{"item":"task-worklet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"tcp-ping","response":"success"},{"item":"tcp-port-used","response":"success"},{"item":"tdweb","response":"success"},{"item":"tea-merge","response":"success"},{"item":"teddy","response":"success"},{"item":"tedious","response":"success"},{"item":"tedious-connection-pool","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"teechart","response":"success"},{"item":"telebot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"temp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"temp-fs","response":"success"},{"item":"terminal-kit","response":"success"},{"item":"terminal-menu","response":"success"},{"item":"tern","response":"success"},{"item":"terser-webpack-plugin","response":"success"},{"item":"teslajs","response":"success"},{"item":"tesseract.js","response":"success"},{"item":"test-console","response":"success"},{"item":"test-listen","response":"success"},{"item":"testing-library__cypress","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(23,31): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(44,86): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(57,89): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(70,85): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(83,88): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(96,83): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(109,86): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(122,82): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(135,85): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(148,88): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(161,91): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(174,87): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(187,90): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(200,78): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(213,81): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(226,77): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(239,80): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(252,77): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(265,80): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(278,76): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(291,79): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(304,76): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(317,79): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(330,75): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(343,78): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(356,83): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(369,86): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(382,82): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(395,85): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(408,74): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(421,77): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(434,73): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(447,76): error TS2304: Cannot find name 'JQuery'.\n"},{"item":"testing-library__dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"testing-library__jest-dom","response":"success"},{"item":"testing-library__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"testing-library__react-hooks","response":"success"},{"item":"testing-library__user-event","response":"success"},{"item":"testing-library__vue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"testingbot-api","response":"success"},{"item":"tether","response":"success"},{"item":"tether-drop","response":"success"},{"item":"tether-shepherd","response":"success"},{"item":"text-buffer","response":"success"},{"item":"text-encoding","response":"success"},{"item":"text-encoding-utf-8","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"text-mask-addons","response":"success"},{"item":"text-mask-core","response":"success"},{"item":"text-table","response":"success"},{"item":"textarea-caret","response":"success"},{"item":"textextensions","response":"success"},{"item":"textract","response":"success"},{"item":"textversionjs","response":"success"},{"item":"texzilla","response":"success"},{"item":"tgfancy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"theme-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"theme-ui__components","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"then-eos","response":"success"},{"item":"theo","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"thepiratebay","response":"success"},{"item":"three-tds-loader","response":"success"},{"item":"thrift","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"throng","response":"success"},{"item":"throttle","response":"success"},{"item":"throttle-debounce","response":"success"},{"item":"throttleit","response":"success"},{"item":"through","response":"success"},{"item":"through2","response":"success"},{"item":"through2-concurrent","response":"success"},{"item":"through2-map","response":"success"},{"item":"tictactoejs","response":"success"},{"item":"tile-reduce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"tilebelt","response":"success"},{"item":"timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"timelinejs","response":"success"},{"item":"timelinejs3","response":"success"},{"item":"timer-machine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"timezone-js","response":"success"},{"item":"timezoned-date","response":"success"},{"item":"timing-safe-equal","response":"success"},{"item":"timsort","response":"success"},{"item":"tinajs__tina","response":"success"},{"item":"tinajs__tina-redux","response":"success"},{"item":"tinder","response":"success"},{"item":"tingle.js","response":"success"},{"item":"tiny-async-pool","response":"success"},{"item":"tiny-secp256k1","response":"success"},{"item":"tiny-slider-react","response":"success"},{"item":"tinycolor2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"tinycon","response":"success"},{"item":"tinycopy","response":"success"},{"item":"tinymce","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"titanium","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/titanium/index.d.ts(1156,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"title","response":"success"},{"item":"tldjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"tlds","response":"success"},{"item":"tlf-log","response":"success"},{"item":"tmi.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"tmp","response":"success"},{"item":"to-absolute-glob","response":"success"},{"item":"to-camel-case","response":"success"},{"item":"to-json-schema","response":"success"},{"item":"to-markdown","response":"success"},{"item":"to-slug-case","response":"success"},{"item":"to-snake-case","response":"success"},{"item":"to-space-case","response":"success"},{"item":"to-title-case","response":"success"},{"item":"to-title-case-gouch","response":"success"},{"item":"toastr","response":"success"},{"item":"tocktimer","response":"success"},{"item":"tokenizr","response":"success"},{"item":"tokgen","response":"success"},{"item":"toobusy-js","response":"success"},{"item":"tooltipster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"topo","response":"success"},{"item":"topojson","response":"success"},{"item":"topojson-client","response":"success"},{"item":"topojson-server","response":"success"},{"item":"topojson-simplify","response":"success"},{"item":"topojson-specification","response":"success"},{"item":"toposort","response":"success"},{"item":"torrent-search-api","response":"success"},{"item":"torrent-stream","response":"success"},{"item":"touch","response":"success"},{"item":"touch-events","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/touch-events"},{"item":"tough-cookie","response":"success"},{"item":"tough-cookie-file-store","response":"success"},{"item":"tough-cookie-filestore","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property '0' of undefined\n"},{"item":"traceback","response":"success"},{"item":"tracking","response":"success"},{"item":"transducers-js","response":"success"},{"item":"transducers.js","response":"success"},{"item":"trashable","response":"success"},{"item":"traverse","response":"success"},{"item":"traverson","response":"success"},{"item":"travis-fold","response":"success"},{"item":"trayballoon","response":"success"},{"item":"treeify","response":"success"},{"item":"tress","response":"success"},{"item":"trezor-connect","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"trianglify","response":"success"},{"item":"trie-prefix-tree","response":"success"},{"item":"trim","response":"success"},{"item":"triple-beam","response":"success"},{"item":"triplesec","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"trouter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property '0' of undefined\n"},{"item":"truffle-privatekey-provider","response":"success"},{"item":"truncate-middle","response":"success"},{"item":"trunk8","response":"success"},{"item":"trusted-types","response":"success"},{"item":"tryer","response":"success"},{"item":"tryghost__content-api","response":"success"},{"item":"ts-nameof","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"tsc-watch","response":"success"},{"item":"tspromise","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"tsscmp","response":"success"},{"item":"ttf2woff2","response":"success"},{"item":"tti-polyfill","response":"success"},{"item":"tunnel","response":"success"},{"item":"tunnel-ssh","response":"success"},{"item":"turbolinks","response":"success"},{"item":"turbostatus","response":"success"},{"item":"turndown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"tus-js-client","response":"success"},{"item":"tv4","response":"success"},{"item":"tween.js","response":"success"},{"item":"tweenjs","response":"success"},{"item":"tweezer.js","response":"success"},{"item":"twemoji","response":"success"},{"item":"twig","response":"success"},{"item":"twilio","response":"success"},{"item":"twilio-common","response":"success"},{"item":"twilio-video","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"twit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"twitch-ext","response":"success"},{"item":"twitter","response":"success"},{"item":"twitter-for-web","response":"success"},{"item":"twitter-stream-channels","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"twitter-text","response":"success"},{"item":"twix","response":"success"},{"item":"two.js","response":"success"},{"item":"type-check","response":"success"},{"item":"type-detect","response":"success"},{"item":"type-is","response":"success"},{"item":"type-name","response":"success"},{"item":"typeahead","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"typedarray-pool","response":"success"},{"item":"typeof","response":"success"},{"item":"typescript-deferred","response":"success"},{"item":"typography","response":"success"},{"item":"typography-breakpoint-constants","response":"success"},{"item":"typpy","response":"success"},{"item":"tz-format","response":"success"},{"item":"tz-lookup","response":"success"},{"item":"tz-offset","response":"success"},{"item":"ua-parser-js","response":"success"},{"item":"uglify-es","response":"success"},{"item":"uglify-js","response":"success"},{"item":"uglifycss","response":"success"},{"item":"uglifyjs-webpack-plugin","response":"success"},{"item":"ui-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"ui-router-extras","response":"success"},{"item":"ui-select","response":"success"},{"item":"uid-generator","response":"success"},{"item":"uid-safe","response":"success"},{"item":"uid2","response":"success"},{"item":"uikit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"uinput","response":"success"},{"item":"uint32","response":"success"},{"item":"ultra-strftime","response":"success"},{"item":"umbraco","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"umd","response":"success"},{"item":"umzug","response":"success"},{"item":"unc-path-regex","response":"success"},{"item":"underscore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"underscore-ko","response":"success"},{"item":"underscore.string","response":"success"},{"item":"undertaker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"undertaker-registry","response":"success"},{"item":"ungap__create-content","response":"success"},{"item":"ungap__global-this","response":"success"},{"item":"ungap__url-search-params","response":"success"},{"item":"ungap__weakmap","response":"success"},{"item":"uni-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/uni-app"},{"item":"unidecode","response":"success"},{"item":"uniq","response":"success"},{"item":"uniqid","response":"success"},{"item":"unique-hash-stream","response":"success"},{"item":"unique-push-id","response":"success"},{"item":"unist","response":"success"},{"item":"unity-webapi","response":"success"},{"item":"universal-analytics","response":"success"},{"item":"universal-cookie","response":"success"},{"item":"universalify","response":"success"},{"item":"unl-core","response":"success"},{"item":"unorm","response":"success"},{"item":"unsplash-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"unused-files-webpack-plugin","response":"success"},{"item":"unzip","response":"success"},{"item":"unzipper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"update-notifier","response":"success"},{"item":"uploadcare","response":"success"},{"item":"upng-js","response":"success"},{"item":"uppercamelcase","response":"success"},{"item":"urbanairship-cordova","response":"success"},{"item":"uri-template-lite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"uri-templates","response":"success"},{"item":"urijs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"uritemplate","response":"success"},{"item":"urix","response":"success"},{"item":"url-assembler","response":"success"},{"item":"url-join","response":"success"},{"item":"url-metadata","response":"success"},{"item":"url-params","response":"success"},{"item":"url-parse","response":"success"},{"item":"url-safe-base64","response":"success"},{"item":"url-search-params","response":"success"},{"item":"url-template","response":"success"},{"item":"urlencode","response":"success"},{"item":"urlparser","response":"success"},{"item":"urlrouter","response":"success"},{"item":"urlsafe-base64","response":"success"},{"item":"usage","response":"success"},{"item":"usb","response":"success"},{"item":"use-combined-reducers","response":"success"},{"item":"use-deep-compare-effect","response":"success"},{"item":"use-global-hook","response":"success"},{"item":"use-persisted-state","response":"success"},{"item":"use-position","response":"success"},{"item":"use-resize-observer","response":"success"},{"item":"use-set-interval","response":"success"},{"item":"use-set-timeout","response":"success"},{"item":"use-subscription","response":"success"},{"item":"user-agents","response":"success"},{"item":"user-event","response":"success"},{"item":"user-home","response":"success"},{"item":"useragent","response":"success"},{"item":"username","response":"success"},{"item":"uslug","response":"success"},{"item":"utf8","response":"success"},{"item":"utif","response":"success"},{"item":"util-deprecate","response":"success"},{"item":"util.promisify","response":"success"},{"item":"utils-merge","response":"success"},{"item":"utm","response":"success"},{"item":"uuid","response":"success"},{"item":"uuid-1345","response":"success"},{"item":"uuid-apikey","response":"success"},{"item":"uuid-js","response":"success"},{"item":"uuid-parse","response":"success"},{"item":"uuid-validate","response":"success"},{"item":"uws","response":"success"},{"item":"v-chart-plugin","response":"success"},{"item":"v8-profiler","response":"success"},{"item":"v8flags","response":"success"},{"item":"valdr","response":"success"},{"item":"valdr-message","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"valerie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vali-date","response":"success"},{"item":"valiant","response":"success"},{"item":"valid-data-url","response":"success"},{"item":"valid-url","response":"success"},{"item":"validate-npm-package-name","response":"success"},{"item":"validator","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"validatorjs","response":"success"},{"item":"vanilla-masker","response":"success"},{"item":"vanilla-modal","response":"success"},{"item":"vara","response":"success"},{"item":"varint","response":"success"},{"item":"vary","response":"success"},{"item":"vast-client","response":"success"},{"item":"vault-auth-aws","response":"success"},{"item":"vcards-js","response":"success"},{"item":"vcf","response":"success"},{"item":"vec2","response":"success"},{"item":"vec3","response":"success"},{"item":"vectorious","response":"success"},{"item":"venn","response":"success"},{"item":"verror","response":"success"},{"item":"vertx3-eventbus-client","response":"success"},{"item":"vex-js","response":"success"},{"item":"vexflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vfile-location","response":"success"},{"item":"vhost","response":"success"},{"item":"victor","response":"success"},{"item":"victory","response":"success"},{"item":"video.js","response":"success"},{"item":"viewability-helper","response":"success"},{"item":"viewport-list","response":"success"},{"item":"viewport-mercator-project","response":"success"},{"item":"viewporter","response":"success"},{"item":"vigour-ua","response":"success"},{"item":"vimeo","response":"success"},{"item":"vimeo__player","response":"success"},{"item":"vinyl","response":"success"},{"item":"vinyl-buffer","response":"success"},{"item":"vinyl-fs","response":"success"},{"item":"vinyl-paths","response":"success"},{"item":"vinyl-source-stream","response":"success"},{"item":"virtual-dom","response":"success"},{"item":"virtual-keyboard","response":"success"},{"item":"vis","response":"success"},{"item":"vision","response":"success"},{"item":"vitalsigns","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"vivus","response":"success"},{"item":"vkbeautify","response":"success"},{"item":"vmap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"vndb","response":"success"},{"item":"vnu-jar","response":"success"},{"item":"voca","response":"success"},{"item":"void-elements","response":"success"},{"item":"voronoi-diagram","response":"success"},{"item":"vorpal","response":"success"},{"item":"vortex-web-client","response":"success"},{"item":"voucher-code-generator","response":"success"},{"item":"voximplant-websdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vscode","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vscode-windows-registry","response":"success"},{"item":"vssln-parser","response":"success"},{"item":"vue-chartkick","response":"success"},{"item":"vue-clickaway","response":"success"},{"item":"vue-color","response":"success"},{"item":"vue-datetime","response":"success"},{"item":"vue-feather-icons","response":"success"},{"item":"vue-ls","response":"success"},{"item":"vue-markdown","response":"success"},{"item":"vue-moment","response":"success"},{"item":"vue-select","response":"success"},{"item":"vue-splitpane","response":"success"},{"item":"vue-tel-input","response":"success"},{"item":"vue-the-mask","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"vue2-datepicker","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vue2-editor","response":"success"},{"item":"vue2-hammer","response":"success"},{"item":"vuedraggable","response":"success"},{"item":"vuelidate","response":"success"},{"item":"w2ui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"w3c-gamepad","response":"success"},{"item":"w3c-generic-sensor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'statements' of undefined\n"},{"item":"w3c-image-capture","response":"success"},{"item":"w3c-screen-orientation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'statements' of undefined\n"},{"item":"w3c-web-usb","response":"success"},{"item":"w3c-xmlserializer","response":"success"},{"item":"wait-on","response":"success"},{"item":"wait-promise","response":"success"},{"item":"waitme","response":"success"},{"item":"wake_on_lan","response":"success"},{"item":"walk","response":"success"},{"item":"wallabyjs","response":"success"},{"item":"wallop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"wampy","response":"success"},{"item":"wanakana","response":"success"},{"item":"warning","response":"success"},{"item":"watch","response":"success"},{"item":"watchify","response":"success"},{"item":"watchpack","response":"success"},{"item":"waterline","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"wav","response":"success"},{"item":"wav-encoder","response":"success"},{"item":"wavesurfer.js","response":"success"},{"item":"waypoints","response":"success"},{"item":"wcag-contrast","response":"success"},{"item":"wcwidth","response":"success"},{"item":"weak","response":"success"},{"item":"weak-napi","response":"success"},{"item":"weapp-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"web-animations-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'statements' of undefined\n"},{"item":"web-bluetooth","response":"success"},{"item":"web-locks-api","response":"success"},{"item":"web-push","response":"success"},{"item":"web-resource-inliner","response":"success"},{"item":"web3-provider-engine","response":"success"},{"item":"webappsec-credential-management","response":"success"},{"item":"webassembly-web-api","response":"success"},{"item":"webcl","response":"success"},{"item":"webcomponents.js","response":"success"},{"item":"webcrypto","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/webcrypto"},{"item":"webfontloader","response":"success"},{"item":"webgl-ext","response":"success"},{"item":"webgl2","response":"success"},{"item":"webicon","response":"success"},{"item":"webidl-conversions","response":"success"},{"item":"webidl2","response":"success"},{"item":"webidl2js","response":"success"},{"item":"webmidi","response":"success"},{"item":"webpack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n"},{"item":"webpack-assets-manifest","response":"success"},{"item":"webpack-blocks","response":"success"},{"item":"webpack-blocks__assets","response":"success"},{"item":"webpack-blocks__babel","response":"success"},{"item":"webpack-blocks__core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"webpack-blocks__dev-server","response":"success"},{"item":"webpack-blocks__extract-text","response":"success"},{"item":"webpack-blocks__postcss","response":"success"},{"item":"webpack-blocks__sass","response":"success"},{"item":"webpack-blocks__typescript","response":"success"},{"item":"webpack-blocks__uglify","response":"success"},{"item":"webpack-blocks__webpack","response":"success"},{"item":"webpack-bugsnag-plugins","response":"success"},{"item":"webpack-bundle-analyzer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"webpack-chunk-hash","response":"success"},{"item":"webpack-cleanup-plugin","response":"success"},{"item":"webpack-concat-plugin","response":"success"},{"item":"webpack-config-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"webpack-dev-middleware","response":"success"},{"item":"webpack-dev-server","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"webpack-dotenv-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"webpack-env","response":"success"},{"item":"webpack-error-notification","response":"success"},{"item":"webpack-fail-plugin","response":"success"},{"item":"webpack-hot-client","response":"success"},{"item":"webpack-hot-middleware","response":"success"},{"item":"webpack-manifest-plugin","response":"success"},{"item":"webpack-merge","response":"success"},{"item":"webpack-node-externals","response":"success"},{"item":"webpack-notifier","response":"success"},{"item":"webpack-plugin-serve","response":"success"},{"item":"webpack-serve","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"webpack-sources","response":"success"},{"item":"webpack-stream","response":"success"},{"item":"webpack-subresource-integrity","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"webpack-validator","response":"success"},{"item":"webpack-virtual-modules","response":"success"},{"item":"webpack-watched-glob-entries-plugin","response":"success"},{"item":"webpackbar","response":"success"},{"item":"webpagetest","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"webprogbase-console-view","response":"success"},{"item":"webrtc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/webrtc"},{"item":"webscopeio__react-textarea-autocomplete","response":"success"},{"item":"websequencediagrams","response":"success"},{"item":"website-scraper","response":"success"},{"item":"websocket","response":"success"},{"item":"websocket-async","response":"success"},{"item":"websql","response":"success"},{"item":"webtorrent","response":"success"},{"item":"webvr-api","response":"success"},{"item":"week","response":"success"},{"item":"wegame-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"weighted","response":"success"},{"item":"weighted-random-object","response":"success"},{"item":"weixin-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wellknown","response":"success"},{"item":"wepy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"wepy-redux","response":"success"},{"item":"whatwg-encoding","response":"success"},{"item":"whatwg-mimetype","response":"success"},{"item":"whatwg-url","response":"success"},{"item":"wheel","response":"success"},{"item":"when","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"when-dom-ready","response":"success"},{"item":"which","response":"success"},{"item":"which-pm-runs","response":"success"},{"item":"whitelist-object","response":"success"},{"item":"why-did-you-update","response":"success"},{"item":"wicg-mediasession","response":"success"},{"item":"wif","response":"success"},{"item":"wiiu","response":"success"},{"item":"wildstring","response":"success"},{"item":"window-or-global","response":"success"},{"item":"window-size","response":"success"},{"item":"windows-1251","response":"success"},{"item":"windows-foreground-love","response":"success"},{"item":"windows-mutex","response":"success"},{"item":"windows-process-tree","response":"success"},{"item":"windows-script-host","response":"success"},{"item":"windows-service","response":"success"},{"item":"winjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"wink-pos-tagger","response":"success"},{"item":"wink-tokenizer","response":"success"},{"item":"winreg","response":"success"},{"item":"winrt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"winrt-uwp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"winston-dynamodb","response":"success"},{"item":"winston-loggly-bulk","response":"success"},{"item":"winston-mail","response":"success"},{"item":"winston-syslog","response":"success"},{"item":"wiredep","response":"success"},{"item":"wiring-pi","response":"success"},{"item":"wix-style-react","response":"success"},{"item":"wnumb","response":"success"},{"item":"wonder.js","response":"success"}] \ No newline at end of file diff --git a/data/definitelyTyped/list.json b/data/definitelyTyped/list.json index 58cfb5d4d..d0d7497e9 100644 --- a/data/definitelyTyped/list.json +++ b/data/definitelyTyped/list.json @@ -1 +1 @@ -[{"id":"756c5f8d-be26-43fc-8831-0a12df4c972e.json","initialDate":"2020-01-11T17:17:58.333Z","lastUpdatedDate":"2020-01-16T00:31:39.270Z","typesProcessed":9999},{"id":"9749238a-cba9-4abd-9fac-f9d0d4ef90e3.json","initialDate":"2020-01-17T20:34:24.904Z","lastUpdatedDate":"2020-02-01T00:40:31.064Z","typesProcessed":9999},{"id":"45e2213b-fa9c-40d1-b066-89413f063ee3.json","initialDate":"2020-02-01T17:11:06.944Z","lastUpdatedDate":"2020-03-07T00:20:59.201Z","typesProcessed":6549},{"id":"532444dd-7414-42ad-8d30-3da2d2e6c9af.json","initialDate":"2020-03-08T08:08:21.638Z","lastUpdatedDate":"2020-03-17T00:55:23.522Z","typesProcessed":9999},{"id":"59fcd50b-ad93-43d9-8777-45cf4cb83abe.json","initialDate":"2020-03-29T00:47:04.041Z","lastUpdatedDate":"2020-04-12T00:49:14.423Z","typesProcessed":6000}] \ No newline at end of file +[{"id":"756c5f8d-be26-43fc-8831-0a12df4c972e.json","initialDate":"2020-01-11T17:17:58.333Z","lastUpdatedDate":"2020-01-16T00:31:39.270Z","typesProcessed":9999},{"id":"9749238a-cba9-4abd-9fac-f9d0d4ef90e3.json","initialDate":"2020-01-17T20:34:24.904Z","lastUpdatedDate":"2020-02-01T00:40:31.064Z","typesProcessed":9999},{"id":"45e2213b-fa9c-40d1-b066-89413f063ee3.json","initialDate":"2020-02-01T17:11:06.944Z","lastUpdatedDate":"2020-03-07T00:20:59.201Z","typesProcessed":6549},{"id":"532444dd-7414-42ad-8d30-3da2d2e6c9af.json","initialDate":"2020-03-08T08:08:21.638Z","lastUpdatedDate":"2020-03-17T00:55:23.522Z","typesProcessed":9999},{"id":"59fcd50b-ad93-43d9-8777-45cf4cb83abe.json","initialDate":"2020-03-29T00:47:04.041Z","lastUpdatedDate":"2020-04-13T00:47:26.405Z","typesProcessed":6500}] \ No newline at end of file From 05639127eb1f854885bc123939c1988ae941ec73 Mon Sep 17 00:00:00 2001 From: Martin Jesper Low Madsen Date: Tue, 14 Apr 2020 18:02:31 +0200 Subject: [PATCH 39/43] enhancement(types): Enable strictNullChecks and throw errors in unhandled situations (#301) --- src/extension/extensionHandler.ts | 8 ++- src/options/options.ts | 15 +++--- src/transformer/base/base.ts | 30 +++++++++-- src/transformer/descriptor/descriptor.ts | 6 +++ src/transformer/descriptor/helper/helper.ts | 34 ++++++++---- .../descriptor/indexedAccess/indexedAccess.ts | 9 +++- src/transformer/descriptor/mapped/mapped.ts | 10 +++- .../descriptor/method/bodyReturnType.ts | 10 ++-- .../descriptor/method/functionType.ts | 4 ++ .../descriptor/method/methodDeclaration.ts | 6 +++ src/transformer/descriptor/mock/mockCall.ts | 2 +- .../descriptor/mock/mockProperties.ts | 8 +-- .../mock/mockPropertiesAssignments.ts | 2 +- src/transformer/descriptor/module/module.ts | 23 +++++++- .../descriptor/property/propertySignature.ts | 7 +++ .../descriptor/tsLibs/typecriptLibs.ts | 4 +- .../descriptor/typeParameter/typeParameter.ts | 16 ++++-- .../descriptor/typeQuery/typeQuery.ts | 14 +++-- .../genericDeclaration/genericDeclaration.ts | 10 ++-- src/transformer/helper/creator.ts | 2 +- src/transformer/matcher/matcher.ts | 2 +- src/transformer/mock/mock.ts | 2 +- .../mockDefiner/cache/declarationCache.ts | 2 +- .../mockDefiner/cache/declarationListCache.ts | 6 +-- .../mockDefiner/factoryUniqueName.ts | 4 +- src/transformer/mockDefiner/mockDefiner.ts | 52 +++++++++++++++---- .../mockFactoryCall/mockFactoryCall.ts | 21 ++++++-- src/transformer/scope/scope.ts | 4 +- src/transformer/transformer.ts | 10 ++-- src/transformer/typeChecker/typeChecker.ts | 6 ++- test/transformer/create-mock-values.test.ts | 10 ++-- .../descriptor/properties/assignFalsy.test.ts | 6 +-- .../typeQuery/typeQueryUndefined.test.ts | 5 ++ tsconfig.base.json | 1 + 34 files changed, 264 insertions(+), 87 deletions(-) diff --git a/src/extension/extensionHandler.ts b/src/extension/extensionHandler.ts index 3151db0a2..42ad82754 100644 --- a/src/extension/extensionHandler.ts +++ b/src/extension/extensionHandler.ts @@ -18,13 +18,19 @@ export class ExtensionHandler { extension: Extension, ): TMockedPropertyHandler; public get( - extensionOrPropertyName: Function | TPropName, + extensionOrPropertyName: Extension | TPropName, maybePropertyHandler?: AsMockedPropertyHandler, ): TMockedPropertyHandler { if (isFunction(extensionOrPropertyName)) { return extensionOrPropertyName(this._mock); } + if (!maybePropertyHandler) { + throw new Error( + `It looks like you are trying to get an extension for ${extensionOrPropertyName} without specifying the handler.`, + ); + } + return maybePropertyHandler(this._mock[extensionOrPropertyName], this._mock, extensionOrPropertyName); } } diff --git a/src/options/options.ts b/src/options/options.ts index 7c78bdb59..460d6d067 100644 --- a/src/options/options.ts +++ b/src/options/options.ts @@ -7,16 +7,15 @@ export interface TsAutoMockOptions { cacheBetweenTests: TsAutoMockCacheOptions; } -let options: TsAutoMockOptions = null; +let tsAutoMockOptions: TsAutoMockOptions = defaultOptions; -export function SetTsAutoMockOptions(_options: TsAutoMockOptions): void { - options = _options; +export function SetTsAutoMockOptions(options: TsAutoMockOptions): void { + tsAutoMockOptions = { + ...defaultOptions, + ...options, + }; } export function GetOptionByKey(optionKey: T): TsAutoMockOptions[T] { - if (options) { - return options.hasOwnProperty(optionKey) ? options[optionKey] : defaultOptions[optionKey]; - } - - return defaultOptions[optionKey]; + return tsAutoMockOptions[optionKey]; } diff --git a/src/transformer/base/base.ts b/src/transformer/base/base.ts index 8b971bbb3..38bf96d1d 100644 --- a/src/transformer/base/base.ts +++ b/src/transformer/base/base.ts @@ -9,11 +9,14 @@ import { isFunctionFromThisLibrary, } from '../matcher/matcher'; -export type Visitor = (node: ts.CallExpression, declaration: ts.FunctionDeclaration) => ts.Node; +export type Visitor = (node: ts.CallExpression & { typeArguments: ts.NodeArray }, declaration: ts.FunctionDeclaration) => ts.Node; export function baseTransformer(visitor: Visitor, customFunctions: CustomFunction[]): (program: ts.Program, options?: TsAutoMockOptions) => ts.TransformerFactory { return (program: ts.Program, options?: TsAutoMockOptions): ts.TransformerFactory => { - SetTsAutoMockOptions(options); + if (options) { + SetTsAutoMockOptions(options); + } + SetTypeChecker(program.getTypeChecker()); SetProgram(program); @@ -37,18 +40,35 @@ function visitNodeAndChildren(node: ts.Node, context: ts.TransformationContext, return ts.visitEachChild(visitNode(node, visitor, customFunctions), (childNode: ts.Node) => visitNodeAndChildren(childNode, context, visitor, customFunctions), context); } +function isObjectWithProperty( + obj: T, + key: K, +): obj is T & Required<{ [key in K]: T[K] }> { + return typeof obj[key] !== 'undefined'; +} + function visitNode(node: ts.Node, visitor: Visitor, customFunctions: CustomFunction[]): ts.Node { if (!ts.isCallExpression(node)) { return node; } - const signature: ts.Signature = TypescriptHelper.getSignatureOfCallExpression(node); + const signature: ts.Signature | undefined = TypescriptHelper.getSignatureOfCallExpression(node); - if (!isFunctionFromThisLibrary(signature, customFunctions)) { + if (!signature || !isFunctionFromThisLibrary(signature, customFunctions)) { return node; } - const nodeToMock: ts.TypeNode = node.typeArguments[0]; + if (!isObjectWithProperty(node, 'typeArguments') || !node.typeArguments?.length) { + const mockFunction: string = node.getText(); + + throw new Error( + `It seems you've called \`${mockFunction}' without specifying a type argument to mock. ` + + `Please refer to the documentation on how to use \`${mockFunction}': ` + + 'https://github.com/Typescript-TDD/ts-auto-mock#quick-overview' + ); + } + + const [nodeToMock]: ts.NodeArray = node.typeArguments; MockDefiner.instance.setFileNameFromNode(nodeToMock); MockDefiner.instance.setTsAutoMockImportIdentifier(); diff --git a/src/transformer/descriptor/descriptor.ts b/src/transformer/descriptor/descriptor.ts index 211e50312..ecd44921c 100644 --- a/src/transformer/descriptor/descriptor.ts +++ b/src/transformer/descriptor/descriptor.ts @@ -63,6 +63,12 @@ export function GetDescriptor(node: ts.Node, scope: Scope): ts.Expression { case ts.SyntaxKind.Identifier: return GetIdentifierDescriptor(node as ts.Identifier, scope); case ts.SyntaxKind.ThisType: + if (!scope.currentMockKey) { + throw new Error( + `The transformer attempted to look up a mock factory call for \`${node.getText()}' without a mock key.`, + ); + } + return GetMockFactoryCallForThis(scope.currentMockKey); case ts.SyntaxKind.ImportSpecifier: return GetImportDescriptor(node as ts.ImportSpecifier, scope); diff --git a/src/transformer/descriptor/helper/helper.ts b/src/transformer/descriptor/helper/helper.ts index c23063b61..ea86d74b7 100644 --- a/src/transformer/descriptor/helper/helper.ts +++ b/src/transformer/descriptor/helper/helper.ts @@ -16,7 +16,14 @@ export namespace TypescriptHelper { export function GetDeclarationFromNode(node: ts.Node): ts.Declaration { const typeChecker: ts.TypeChecker = TypeChecker(); - const symbol: ts.Symbol = typeChecker.getSymbolAtLocation(node); + const symbol: ts.Symbol | undefined = typeChecker.getSymbolAtLocation(node); + + if (!symbol) { + throw new Error( + `The type checker failed to look up a symbol for \`${node.getText()}'. ` + + 'Perhaps, the checker was searching an outdated source.', + ); + } return GetDeclarationFromSymbol(symbol); } @@ -56,11 +63,13 @@ export namespace TypescriptHelper { export function GetParameterOfNode(node: ts.EntityName): ts.NodeArray { const declaration: ts.Declaration = GetDeclarationFromNode(node); - return (declaration as Declaration).typeParameters; + const { typeParameters = ts.createNodeArray([]) }: Declaration = (declaration as Declaration); + + return typeParameters; } - export function GetTypeParameterOwnerMock(declaration: ts.Declaration): ts.Declaration { - const typeDeclaration: ts.Declaration = ts.getTypeParameterOwner(declaration); + export function GetTypeParameterOwnerMock(declaration: ts.Declaration): ts.Declaration | undefined { + const typeDeclaration: ts.Declaration | undefined = ts.getTypeParameterOwner(declaration); // THIS IS TO FIX A MISSING IMPLEMENTATION IN TYPESCRIPT https://github.com/microsoft/TypeScript/blob/ba5e86f1406f39e89d56d4b32fd6ff8de09a0bf3/src/compiler/utilities.ts#L5138 if (typeDeclaration && (typeDeclaration as Declaration).typeParameters) { @@ -79,7 +88,14 @@ export namespace TypescriptHelper { return propertyName.text; } - const symbol: ts.Symbol = TypeChecker().getSymbolAtLocation(propertyName); + const symbol: ts.Symbol | undefined = TypeChecker().getSymbolAtLocation(propertyName); + + if (!symbol) { + throw new Error( + `The type checker failed to look up symbol for property: ${propertyName.getText()}.`, + ); + } + return symbol.escapedName.toString(); } @@ -88,7 +104,7 @@ export namespace TypescriptHelper { } - export function getSignatureOfCallExpression(node: ts.CallExpression): ts.Signature { + export function getSignatureOfCallExpression(node: ts.CallExpression): ts.Signature | undefined { const typeChecker: ts.TypeChecker = TypeChecker(); return typeChecker.getResolvedSignature(node); @@ -109,9 +125,9 @@ export namespace TypescriptHelper { function GetDeclarationsForImport(node: ImportDeclaration): ts.Declaration[] { const typeChecker: ts.TypeChecker = TypeChecker(); - const symbol: ts.Symbol = typeChecker.getSymbolAtLocation(node.name); - const originalSymbol: ts.Symbol = typeChecker.getAliasedSymbol(symbol); + const symbol: ts.Symbol | undefined = node.name && typeChecker.getSymbolAtLocation(node.name); + const originalSymbol: ts.Symbol | undefined = symbol && typeChecker.getAliasedSymbol(symbol); - return originalSymbol.declarations; + return originalSymbol?.declarations ?? []; } } diff --git a/src/transformer/descriptor/indexedAccess/indexedAccess.ts b/src/transformer/descriptor/indexedAccess/indexedAccess.ts index ea1096b13..fdaa3aee2 100644 --- a/src/transformer/descriptor/indexedAccess/indexedAccess.ts +++ b/src/transformer/descriptor/indexedAccess/indexedAccess.ts @@ -37,7 +37,14 @@ export function GetIndexedAccessTypeDescriptor(node: ts.IndexedAccessTypeNode, s } if (propertyName !== null) { - const propertySymbol: ts.Symbol = typeChecker.getPropertyOfType(typeChecker.getTypeFromTypeNode(node.objectType), propertyName); + const propertySymbol: ts.Symbol | undefined = typeChecker.getPropertyOfType(typeChecker.getTypeFromTypeNode(node.objectType), propertyName); + + if (!propertySymbol) { + throw new Error( + `The type checker failed to look up symbol for property: \`${propertyName}' of \`${node.getText()}'.`, + ); + } + return GetDescriptor(TypescriptHelper.GetDeclarationFromSymbol(propertySymbol), scope); } diff --git a/src/transformer/descriptor/mapped/mapped.ts b/src/transformer/descriptor/mapped/mapped.ts index 8851bc9eb..0f4b4ab81 100644 --- a/src/transformer/descriptor/mapped/mapped.ts +++ b/src/transformer/descriptor/mapped/mapped.ts @@ -6,9 +6,15 @@ import { GetMockPropertiesFromDeclarations } from '../mock/mockProperties'; import { GetTypes } from '../type/type'; export function GetMappedDescriptor(node: ts.MappedTypeNode, scope: Scope): ts.Expression { - const typeParameter: ts.TypeNode = node.typeParameter.constraint; + const typeParameter: ts.TypeNode | undefined = node.typeParameter.constraint; const typeChecker: ts.TypeChecker = TypeChecker(); - const types: ts.Node[] = GetTypes(ts.createNodeArray([typeParameter]), scope); + + const parameters: ts.TypeNode[] = []; + if (typeParameter) { + parameters.push(typeParameter); + } + + const types: ts.Node[] = GetTypes(ts.createNodeArray(parameters), scope); const properties: ts.PropertyDeclaration[] = types.reduce((acc: ts.PropertyDeclaration[], possibleType: ts.Node) => { if (ts.isLiteralTypeNode(possibleType)) { diff --git a/src/transformer/descriptor/method/bodyReturnType.ts b/src/transformer/descriptor/method/bodyReturnType.ts index 63c202e67..10535cd34 100644 --- a/src/transformer/descriptor/method/bodyReturnType.ts +++ b/src/transformer/descriptor/method/bodyReturnType.ts @@ -8,11 +8,11 @@ export function GetReturnTypeFromBodyDescriptor(node: ts.ArrowFunction | ts.Func } export function GetReturnNodeFromBody(node: ts.FunctionLikeDeclaration): ts.Node { - let returnValue: ts.Node; + let returnValue: ts.Node | undefined; - const functionBody: ts.ConciseBody = node.body; + const functionBody: ts.ConciseBody | undefined = node.body; - if (ts.isBlock(functionBody)) { + if (functionBody && ts.isBlock(functionBody)) { const returnStatement: ts.ReturnStatement = GetReturnStatement(functionBody); if (returnStatement) { @@ -24,6 +24,10 @@ export function GetReturnNodeFromBody(node: ts.FunctionLikeDeclaration): ts.Node returnValue = node.body; } + if (!returnValue) { + throw new Error(`Failed to determine the return value of ${node.getText()}.`); + } + return returnValue; } diff --git a/src/transformer/descriptor/method/functionType.ts b/src/transformer/descriptor/method/functionType.ts index 93fde3f52..a044b8463 100644 --- a/src/transformer/descriptor/method/functionType.ts +++ b/src/transformer/descriptor/method/functionType.ts @@ -7,6 +7,10 @@ import { GetMethodDescriptor } from './method'; export function GetFunctionTypeDescriptor(node: ts.FunctionTypeNode | ts.CallSignatureDeclaration | ts.ConstructSignatureDeclaration, scope: Scope): ts.Expression { const property: ts.PropertyName = PropertySignatureCache.instance.get(); + if (!node.type) { + throw new Error(`No type was declared for ${node.getText()}.`); + } + const returnValue: ts.Expression = GetDescriptor(node.type, scope); return GetMethodDescriptor(property, returnValue); diff --git a/src/transformer/descriptor/method/methodDeclaration.ts b/src/transformer/descriptor/method/methodDeclaration.ts index e27b66076..528fc4120 100644 --- a/src/transformer/descriptor/method/methodDeclaration.ts +++ b/src/transformer/descriptor/method/methodDeclaration.ts @@ -8,5 +8,11 @@ export function GetMethodDeclarationDescriptor(node: ts.MethodDeclaration | ts.F const returnTypeNode: ts.Node = GetFunctionReturnType(node); const returnType: ts.Expression = GetDescriptor(returnTypeNode, scope); + if (!node.name) { + throw new Error( + `The transformer couldn't determine the name of ${node.getText()}. Please report this incident.`, + ); + } + return GetMethodDescriptor(node.name, returnType); } diff --git a/src/transformer/descriptor/mock/mockCall.ts b/src/transformer/descriptor/mock/mockCall.ts index d84895b26..5e1be62ba 100644 --- a/src/transformer/descriptor/mock/mockCall.ts +++ b/src/transformer/descriptor/mock/mockCall.ts @@ -4,7 +4,7 @@ import { MockIdentifierInternalValues, MockIdentifierObjectReturnValue } from '. import { GetMockMarkerProperty, Property } from './mockMarker'; import { PropertyAssignments } from './mockPropertiesAssignments'; -export function GetMockCall(properties: PropertyAssignments, signature: ts.Expression): ts.CallExpression { +export function GetMockCall(properties: PropertyAssignments, signature: ts.Expression | null): ts.CallExpression { const mockObjectReturnValueName: ts.Identifier = MockIdentifierObjectReturnValue; const statements: ts.Statement[] = [ TypescriptCreator.createVariableStatement([ diff --git a/src/transformer/descriptor/mock/mockProperties.ts b/src/transformer/descriptor/mock/mockProperties.ts index 8169878ef..0fa48afe5 100644 --- a/src/transformer/descriptor/mock/mockProperties.ts +++ b/src/transformer/descriptor/mock/mockProperties.ts @@ -19,21 +19,21 @@ export function GetMockPropertiesFromSymbol(propertiesSymbol: ts.Symbol[], signa export function GetMockPropertiesFromDeclarations(list: ReadonlyArray, signatures: ReadonlyArray, scope: Scope): ts.CallExpression { const propertiesFilter: PropertyLike[] = list.filter((member: PropertyLike) => { - const hasModifiers: boolean = !!member.modifiers; + const modifiers: ts.ModifiersArray | undefined = member.modifiers; if (IsTypescriptType(member)) { // This is a current workaround to safe fail extends of TypescriptLibs return false; } - if (!hasModifiers) { + if (!modifiers) { return true; } - return member.modifiers.filter((modifier: ts.Modifier) => modifier.kind === ts.SyntaxKind.PrivateKeyword).length === 0; + return modifiers.filter((modifier: ts.Modifier) => modifier.kind === ts.SyntaxKind.PrivateKeyword).length === 0; }); const accessorDeclaration: PropertyAssignments = GetMockPropertiesAssignments(propertiesFilter, scope); - const signaturesDescriptor: ts.Expression = signatures.length > 0 ? GetDescriptor(signatures[0], scope) : null; + const signaturesDescriptor: ts.Expression | null = signatures.length ? GetDescriptor(signatures[0], scope) : null; return GetMockCall(accessorDeclaration, signaturesDescriptor); } diff --git a/src/transformer/descriptor/mock/mockPropertiesAssignments.ts b/src/transformer/descriptor/mock/mockPropertiesAssignments.ts index b01272be9..254e7abfe 100644 --- a/src/transformer/descriptor/mock/mockPropertiesAssignments.ts +++ b/src/transformer/descriptor/mock/mockPropertiesAssignments.ts @@ -51,7 +51,7 @@ function GetLazyMockProperty(descriptor: ts.Expression, member: PropertyLike): t const hasOwnProperty: ts.Expression = ts.createCall( ts.createPropertyAccess(MockIdentifierInternalValues, 'hasOwnProperty'), - null, + undefined, [stringPropertyName] ); diff --git a/src/transformer/descriptor/module/module.ts b/src/transformer/descriptor/module/module.ts index efdaebe5a..7b6dda916 100644 --- a/src/transformer/descriptor/module/module.ts +++ b/src/transformer/descriptor/module/module.ts @@ -9,9 +9,21 @@ import { GetTypeQueryDescriptorFromDeclaration } from '../typeQuery/typeQuery'; type ExternalSource = ts.SourceFile | ts.ModuleDeclaration; export function GetModuleDescriptor(node: ts.NamedDeclaration, scope: Scope): ts.Expression { + if (!node.name) { + throw new Error( + `Cannot look up symbol for a node without a name: ${node.getText()}.`, + ); + } + const typeChecker: ts.TypeChecker = TypeChecker(); + const symbolAlias: ts.Symbol | undefined = typeChecker.getSymbolAtLocation(node.name); + + if (!symbolAlias) { + throw new Error( + `The type checker failed to look up symbol for \`${node.name.getText()}'.`, + ); + } - const symbolAlias: ts.Symbol = typeChecker.getSymbolAtLocation(node.name); const symbol: ts.Symbol = typeChecker.getAliasedSymbol(symbolAlias); const externalModuleDeclaration: ts.NamedDeclaration = symbol.declarations[0]; @@ -44,7 +56,14 @@ export function GetPropertiesFromSourceFileOrModuleDeclaration(symbol: ts.Symbol } if (ts.isExportSpecifier(declaration) && ts.isSourceFile(originalDeclaration)) { - const exportSpecifierSymbol: ts.Symbol = typeChecker.getSymbolAtLocation(declaration.name); + const exportSpecifierSymbol: ts.Symbol | undefined = typeChecker.getSymbolAtLocation(declaration.name); + + if (!exportSpecifierSymbol) { + throw new Error( + `The type checker failed to look up symbol for \`${declaration.name.getText()}'.`, + ); + } + const exportSpecifierAliasSymbol: ts.Symbol = typeChecker.getAliasedSymbol(exportSpecifierSymbol); const exportSpecifierProperties: ts.PropertySignature[] = GetPropertiesFromSourceFileOrModuleDeclaration(exportSpecifierAliasSymbol, scope); const propertyType: ts.TypeNode = ts.createTypeLiteralNode(exportSpecifierProperties); diff --git a/src/transformer/descriptor/property/propertySignature.ts b/src/transformer/descriptor/property/propertySignature.ts index c6a72f15d..bcc822ccf 100644 --- a/src/transformer/descriptor/property/propertySignature.ts +++ b/src/transformer/descriptor/property/propertySignature.ts @@ -13,8 +13,15 @@ export function GetPropertyDescriptor(node: PropertyNode, scope: Scope): ts.Expr if (node.questionToken) { return GetUndefinedDescriptor(); } + return GetDescriptor(node.type, scope); } + if (!node.initializer) { + throw new Error( + `The transformer couldn't determine a property value for \`${node.getText()}' without a specified type nor an initializer value.`, + ); + } + return GetDescriptor(node.initializer, scope); } diff --git a/src/transformer/descriptor/tsLibs/typecriptLibs.ts b/src/transformer/descriptor/tsLibs/typecriptLibs.ts index 8b7ea2e22..83fa84a72 100644 --- a/src/transformer/descriptor/tsLibs/typecriptLibs.ts +++ b/src/transformer/descriptor/tsLibs/typecriptLibs.ts @@ -18,8 +18,8 @@ export function IsTypescriptType(node: ts.Node): boolean { export function GetTypescriptTypeDescriptor(node: ts.TypeReferenceNode, scope: Scope): ts.Expression { const typeChecker: ts.TypeChecker = TypeChecker(); - const symbol: ts.Symbol = typeChecker.getSymbolAtLocation(node.typeName); - const typeScriptType: TypescriptLibsTypes = TypescriptLibsTypes[symbol.name]; + const symbol: ts.Symbol | undefined = typeChecker.getSymbolAtLocation(node.typeName); + const typeScriptType: TypescriptLibsTypes = symbol?.name && TypescriptLibsTypes[symbol.name]; switch (typeScriptType) { case(TypescriptLibsTypes.Array): diff --git a/src/transformer/descriptor/typeParameter/typeParameter.ts b/src/transformer/descriptor/typeParameter/typeParameter.ts index 5729abccb..39f2cd49c 100644 --- a/src/transformer/descriptor/typeParameter/typeParameter.ts +++ b/src/transformer/descriptor/typeParameter/typeParameter.ts @@ -14,11 +14,21 @@ export function GetTypeParameterDescriptor(node: ts.TypeParameterDeclaration, sc const descriptor: ts.Expression = node.default ? GetDescriptor(node.default, scope) : GetNullDescriptor(); const declaration: ts.Declaration = type.symbol.declarations[0]; - const typeDeclaration: ts.Declaration = TypescriptHelper.GetTypeParameterOwnerMock(declaration); + const typeDeclaration: ts.Declaration | undefined = TypescriptHelper.GetTypeParameterOwnerMock(declaration); - const genericKey: string = MockDefiner.instance.getDeclarationKeyMap(typeDeclaration) + node.name.escapedText; + if (!typeDeclaration) { + throw new Error(`Failed to determine the owner (parent) of the type parameter: \`${declaration.getText()}'.`); + } - return createFunctionToAccessToGenericValue(genericKey, descriptor); + const genericKey: string | undefined = MockDefiner.instance.getDeclarationKeyMap(typeDeclaration); + + if (!genericKey) { + throw new Error( + `Failed to look up generic key in MockDefiner for \`${typeDeclaration.getText()}'.`, + ); + } + + return createFunctionToAccessToGenericValue(genericKey + node.name.escapedText, descriptor); } function createFunctionToAccessToGenericValue(key: string, descriptor: ts.Expression): ts.CallExpression { diff --git a/src/transformer/descriptor/typeQuery/typeQuery.ts b/src/transformer/descriptor/typeQuery/typeQuery.ts index 7242dc9c1..c9cc96a51 100644 --- a/src/transformer/descriptor/typeQuery/typeQuery.ts +++ b/src/transformer/descriptor/typeQuery/typeQuery.ts @@ -14,9 +14,9 @@ import { GetTypeReferenceDescriptor } from '../typeReference/typeReference'; import { GetUndefinedDescriptor } from '../undefined/undefined'; export function GetTypeQueryDescriptor(node: ts.TypeQueryNode, scope: Scope): ts.Expression { - const symbol: ts.Symbol = getTypeQuerySymbol(node); + const symbol: ts.Symbol | undefined = getTypeQuerySymbol(node); - if (!symbol.declarations.length) { + if (!symbol?.declarations.length) { return GetUndefinedDescriptor(); } @@ -60,8 +60,14 @@ export function GetTypeQueryDescriptorFromDeclaration(declaration: ts.NamedDecla return GetDescriptor(variable.type, scope); } + if (!variable.initializer) { + throw new Error( + `The transformer cannot determine a value for \`${variable.getText()}' without a specified type or no initializer value.`, + ); + } + const inferredType: ts.Node = GetType(variable.initializer, scope); - const symbol: ts.Symbol = typeChecker.getSymbolAtLocation(inferredType); + const symbol: ts.Symbol | undefined = typeChecker.getSymbolAtLocation(inferredType); if (symbol) { const inferredTypeDeclaration: ts.NamedDeclaration = getTypeQueryDeclarationFromSymbol(symbol); @@ -76,7 +82,7 @@ export function GetTypeQueryDescriptorFromDeclaration(declaration: ts.NamedDecla } } -function getTypeQuerySymbol(node: ts.TypeQueryNode): ts.Symbol { +function getTypeQuerySymbol(node: ts.TypeQueryNode): ts.Symbol | undefined { return TypeChecker().getSymbolAtLocation(node.exprName); } diff --git a/src/transformer/genericDeclaration/genericDeclaration.ts b/src/transformer/genericDeclaration/genericDeclaration.ts index 8ebb6dbed..b5a11604f 100644 --- a/src/transformer/genericDeclaration/genericDeclaration.ts +++ b/src/transformer/genericDeclaration/genericDeclaration.ts @@ -11,7 +11,7 @@ import { GenericParameter } from './genericParameter'; export function GenericDeclaration(scope: Scope): IGenericDeclaration { const generics: GenericParameter[] = []; - function isGenericProvided(node: ts.TypeReferenceNode | ts.ExpressionWithTypeArguments, index: number): boolean { + function isGenericProvided(node: T, index: number): node is T & Required { return !!node.typeArguments && !!node.typeArguments[index]; } @@ -31,9 +31,11 @@ export function GenericDeclaration(scope: Scope): IGenericDeclaration { const existingUniqueName: string = declarationKey + typeParameterDeclaration.name.escapedText; const uniqueName: string = extensionDeclarationKey + ownerParameterDeclaration.name.escapedText; - const parameterToAdd: GenericParameter = generics.find((genericParameter: GenericParameter) => genericParameter.ids.includes(existingUniqueName)); + const parameterToAdd: GenericParameter | undefined = generics.find((genericParameter: GenericParameter) => genericParameter.ids.includes(existingUniqueName)); - parameterToAdd.ids.push(uniqueName); + if (parameterToAdd?.ids) { + parameterToAdd.ids.push(uniqueName); + } } function createGenericParameter(ownerKey: string, nodeOwnerParameter: ts.TypeParameterDeclaration, genericDescriptor: ts.Expression): GenericParameter { @@ -73,7 +75,7 @@ export function GenericDeclaration(scope: Scope): IGenericDeclaration { extensionDeclaration: GenericDeclarationSupported, extensionDeclarationKey: string, extension: ts.ExpressionWithTypeArguments): void { - const extensionDeclarationTypeParameters: ts.NodeArray = extensionDeclaration.typeParameters; + const extensionDeclarationTypeParameters: ts.NodeArray | undefined = extensionDeclaration.typeParameters; if (!extensionDeclarationTypeParameters) { return; diff --git a/src/transformer/helper/creator.ts b/src/transformer/helper/creator.ts index bf16b8732..fd5e7b1de 100644 --- a/src/transformer/helper/creator.ts +++ b/src/transformer/helper/creator.ts @@ -48,7 +48,7 @@ export namespace TypescriptCreator { return createProperty('', undefined); } - export function createProperty(propertyName: string | PropertyName, type: ts.TypeNode): ts.PropertyDeclaration { + export function createProperty(propertyName: string | PropertyName, type: ts.TypeNode | undefined): ts.PropertyDeclaration { return ts.createProperty(undefined, undefined, propertyName, undefined, type, undefined); } diff --git a/src/transformer/matcher/matcher.ts b/src/transformer/matcher/matcher.ts index 19a0a4f05..4a878dbfe 100644 --- a/src/transformer/matcher/matcher.ts +++ b/src/transformer/matcher/matcher.ts @@ -12,7 +12,7 @@ export function isFunctionFromThisLibrary(signature: ts.Signature, customFunctio return false; } - if (!ts.isFunctionDeclaration(signature.declaration)) { + if (!signature.declaration || !ts.isFunctionDeclaration(signature.declaration)) { return false; } diff --git a/src/transformer/mock/mock.ts b/src/transformer/mock/mock.ts index 722664681..3b73ea443 100644 --- a/src/transformer/mock/mock.ts +++ b/src/transformer/mock/mock.ts @@ -12,7 +12,7 @@ function getMockExpression(nodeToMock: ts.TypeNode): ts.Expression { } function hasDefaultValues(node: ts.CallExpression): boolean { - return node.arguments.length && !!node.arguments[0]; + return !!node.arguments.length && !!node.arguments[0]; } function hasDefaultListValues(node: ts.CallExpression): boolean { diff --git a/src/transformer/mockDefiner/cache/declarationCache.ts b/src/transformer/mockDefiner/cache/declarationCache.ts index 0abfe3111..fffe88ba3 100644 --- a/src/transformer/mockDefiner/cache/declarationCache.ts +++ b/src/transformer/mockDefiner/cache/declarationCache.ts @@ -11,7 +11,7 @@ export class DeclarationCache { this._declarationKeyMap.set(declaration, key); } - public get(declaration: ts.Declaration): string { + public get(declaration: ts.Declaration): string | undefined { return this._declarationKeyMap.get(declaration); } diff --git a/src/transformer/mockDefiner/cache/declarationListCache.ts b/src/transformer/mockDefiner/cache/declarationListCache.ts index 779d0b1f2..7b4def46d 100644 --- a/src/transformer/mockDefiner/cache/declarationListCache.ts +++ b/src/transformer/mockDefiner/cache/declarationListCache.ts @@ -20,15 +20,15 @@ export class DeclarationListCache { }); } - public get(declarations: ts.Declaration[]): string { - return this._find(declarations).key; + public get(declarations: ts.Declaration[]): string | undefined { + return this._find(declarations)?.key; } public has(declarations: ts.Declaration[]): boolean { return !!this._find(declarations); } - private _find(declarations: ts.Declaration[]): DeclarationListCacheElement { + private _find(declarations: ts.Declaration[]): DeclarationListCacheElement | undefined { return this._cache.find((intersection: DeclarationListCacheElement) => ArrayHelper.AreEqual(declarations, intersection.declarations)); } } diff --git a/src/transformer/mockDefiner/factoryUniqueName.ts b/src/transformer/mockDefiner/factoryUniqueName.ts index 277856958..2109345f9 100644 --- a/src/transformer/mockDefiner/factoryUniqueName.ts +++ b/src/transformer/mockDefiner/factoryUniqueName.ts @@ -12,7 +12,7 @@ export class FactoryUniqueName { } public createForDeclaration(declaration: PossibleDeclaration): string { - const declarationNameIdentifier: ts.Identifier = declaration.name; + const declarationNameIdentifier: ts.Identifier | undefined = declaration.name; return this.createUniqueName(declarationNameIdentifier && declarationNameIdentifier.text); } @@ -24,7 +24,7 @@ export class FactoryUniqueName { } if (ts.isInterfaceDeclaration(declaration) || ts.isTypeAliasDeclaration(declaration) || ts.isClassDeclaration(declaration)) { - acc += declaration.name.text; + acc += declaration.name?.text || ''; } return acc; diff --git a/src/transformer/mockDefiner/mockDefiner.ts b/src/transformer/mockDefiner/mockDefiner.ts index d8ade3445..56bde1e5b 100644 --- a/src/transformer/mockDefiner/mockDefiner.ts +++ b/src/transformer/mockDefiner/mockDefiner.ts @@ -110,7 +110,13 @@ export class MockDefiner { public createMockFactory(declaration: ts.Declaration): void { const thisFileName: string = this._fileName; - const key: string = this.getDeclarationKeyMap(declaration); + const key: string | undefined = this.getDeclarationKeyMap(declaration); + + if (!key) { + throw new Error( + `Failed to obtain key while creating mock factory for \`${declaration.getText()}'.`, + ); + } this._factoryCache.set(declaration, key); @@ -146,7 +152,7 @@ export class MockDefiner { return this._getCallGetFactory(key); } - public getDeclarationKeyMap(declaration: ts.Declaration): string { + public getDeclarationKeyMap(declaration: ts.Declaration): string | undefined { if (!this._declarationCache.has(declaration)) { const key: string = this._factoryUniqueName.createForDeclaration(declaration as PossibleDeclaration); @@ -157,7 +163,13 @@ export class MockDefiner { } public storeRegisterMockFor(declaration: ts.Declaration, factory: ts.FunctionExpression): void { - const key: string = this.getDeclarationKeyMap(declaration); + const key: string | undefined = this.getDeclarationKeyMap(declaration); + + if (!key) { + throw new Error( + `Failed to obtain key while storing mock for \`${declaration.getText()}'.`, + ); + } this._registerMockFactoryCache.set(declaration, key); @@ -190,11 +202,18 @@ export class MockDefiner { private _getMockFactoryIdForTypeofEnum(declaration: ts.EnumDeclaration): string { const thisFileName: string = this._fileName; - if (this._factoryCache.has(declaration)) { - return this._factoryCache.get(declaration); + const cachedFactory: string | undefined = this._factoryCache.get(declaration); + if (cachedFactory) { + return cachedFactory; } - const key: string = this.getDeclarationKeyMap(declaration); + const key: string | undefined = this.getDeclarationKeyMap(declaration); + + if (!key) { + throw new Error( + `Failed to obtain key while resolving factory identifier (internal) for \`${declaration.getText()}'.`, + ); + } this._factoryCache.set(declaration, key); @@ -214,7 +233,8 @@ export class MockDefiner { const thisFileName: string = this._fileName; if (this._factoryIntersectionCache.has(declarations)) { - return this._factoryIntersectionCache.get(declarations); + // eslint-disable-next-line + return this._factoryIntersectionCache.get(declarations)!; } const key: string = this._factoryUniqueName.createForIntersection(declarations); @@ -250,7 +270,11 @@ export class MockDefiner { if (this._factoryRegistrationsPerFile[sourceFile.fileName]) { return this._factoryRegistrationsPerFile[sourceFile.fileName] .map((reg: { key: ts.Declaration; factory: ts.Expression }) => { - const key: string = this._factoryCache.get(reg.key); + // NOTE: this._factoryRegistrationsPerFile and this._factoryCache are + // populated in the same routine and if the former is defined the + // latter will be too! + // eslint-disable-next-line + const key: string = this._factoryCache.get(reg.key)!; return this._createRegistration(sourceFile.fileName, key, reg.factory); }); @@ -263,7 +287,11 @@ export class MockDefiner { if (this._factoryIntersectionsRegistrationsPerFile[sourceFile.fileName]) { return this._factoryIntersectionsRegistrationsPerFile[sourceFile.fileName] .map((reg: { keys: ts.Declaration[]; factory: ts.Expression }) => { - const key: string = this._factoryIntersectionCache.get(reg.keys); + // NOTE: this._factoryIntersectionsRegistrationsPerFile and + // this._factoryIntersectionCache are populated in the same routine + // and if the former is defined the latter will be too! + // eslint-disable-next-line + const key: string = this._factoryIntersectionCache.get(reg.keys)!; return this._createRegistration(sourceFile.fileName, key, reg.factory); }); @@ -276,7 +304,11 @@ export class MockDefiner { if (this._registerMockFactoryRegistrationsPerFile[sourceFile.fileName]) { return this._registerMockFactoryRegistrationsPerFile[sourceFile.fileName] .map((reg: { key: ts.Declaration; factory: ts.Expression }) => { - const key: string = this._registerMockFactoryCache.get(reg.key); + // NOTE: this._registerMockFactoryCache and + // this._registerMockFactoryCache are populated in the same routine + // and if the former is defined the latter will be too! + // eslint-disable-next-line + const key: string = this._registerMockFactoryCache.get(reg.key)!; return this._createRegistration(sourceFile.fileName, key, reg.factory); }); diff --git a/src/transformer/mockFactoryCall/mockFactoryCall.ts b/src/transformer/mockFactoryCall/mockFactoryCall.ts index e6e155b17..cfb79b3d6 100644 --- a/src/transformer/mockFactoryCall/mockFactoryCall.ts +++ b/src/transformer/mockFactoryCall/mockFactoryCall.ts @@ -30,7 +30,13 @@ export function GetMockFactoryCallIntersection(intersection: ts.IntersectionType const declarations: ts.Declaration[] | ts.TypeLiteralNode[] = intersection.types.map((type: ts.TypeNode) => { if (ts.isTypeReferenceNode(type)) { const declaration: ts.Declaration = TypescriptHelper.GetDeclarationFromNode(type.typeName); - const declarationKey: string = MockDefiner.instance.getDeclarationKeyMap(declaration); + const declarationKey: string | undefined = MockDefiner.instance.getDeclarationKeyMap(declaration); + + if (!declarationKey) { + throw new Error( + `Failed to look up declaration key in MockDefiner for \`${declaration.getText()}'.`, + ); + } genericDeclaration.addFromTypeReferenceNode(type, declarationKey); @@ -69,7 +75,12 @@ export function GetMockFactoryCallForThis(mockKey: string): ts.Expression { } function getDeclarationMockFactoryCall(declaration: ts.Declaration, typeReferenceNode: ts.TypeReferenceNode, scope: Scope): ts.Expression { - const declarationKey: string = MockDefiner.instance.getDeclarationKeyMap(declaration); + const declarationKey: string | undefined = MockDefiner.instance.getDeclarationKeyMap(declaration); + + if (!declarationKey) { + throw new Error(`Failed to look up declaration key in MockDefiner for \`${declaration.getText()}'.`); + } + const mockFactoryCall: ts.Expression = MockDefiner.instance.getMockFactoryByKey(declarationKey); const genericDeclaration: IGenericDeclaration = GenericDeclaration(scope); @@ -95,7 +106,11 @@ function addFromDeclarationExtensions(declaration: GenericDeclarationSupported, const extensionDeclaration: ts.Declaration = TypescriptHelper.GetDeclarationFromNode(extension.expression); - const extensionDeclarationKey: string = MockDefiner.instance.getDeclarationKeyMap(extensionDeclaration); + const extensionDeclarationKey: string | undefined = MockDefiner.instance.getDeclarationKeyMap(extensionDeclaration); + + if (!extensionDeclarationKey) { + throw new Error(`Failed to look up declaration key in MockDefiner for \`${extensionDeclaration.getText()}'.`); + } genericDeclaration.addFromDeclarationExtension( declarationKey, diff --git a/src/transformer/scope/scope.ts b/src/transformer/scope/scope.ts index 946c0c0d6..0d8cc1a3d 100644 --- a/src/transformer/scope/scope.ts +++ b/src/transformer/scope/scope.ts @@ -6,9 +6,9 @@ export class Scope { this._currentMockKey = currentMockKey; } - private readonly _currentMockKey: string; + private readonly _currentMockKey: string | undefined; - public get currentMockKey(): string { + public get currentMockKey(): string | undefined { return this._currentMockKey; } } diff --git a/src/transformer/transformer.ts b/src/transformer/transformer.ts index 4d716727d..e9d36436b 100644 --- a/src/transformer/transformer.ts +++ b/src/transformer/transformer.ts @@ -25,8 +25,8 @@ const transformer: export { transformer }; -function visitNode(node: ts.CallExpression, declaration: ts.FunctionDeclaration): ts.Node { - const nodeToMock: ts.TypeNode = node.typeArguments[0]; +function visitNode(node: ts.CallExpression & { typeArguments: ts.NodeArray }, declaration: ts.FunctionDeclaration): ts.Node { + const [nodeToMock]: ts.NodeArray = node.typeArguments; if (isCreateMock(declaration)) { return getMock(nodeToMock, node); @@ -44,13 +44,13 @@ function visitNode(node: ts.CallExpression, declaration: ts.FunctionDeclaration) } function isCreateMock(declaration: ts.FunctionDeclaration): boolean { - return declaration.name && declaration.name.getText() === 'createMock'; + return declaration.name?.getText() === 'createMock'; } function isCreateMockList(declaration: ts.FunctionDeclaration): boolean { - return declaration.name && declaration.name.getText() === 'createMockList'; + return declaration.name?.getText() === 'createMockList'; } function isRegisterMock(declaration: ts.FunctionDeclaration): boolean { - return declaration.name && declaration.name.getText() === 'registerMock'; + return declaration.name?.getText() === 'registerMock'; } diff --git a/src/transformer/typeChecker/typeChecker.ts b/src/transformer/typeChecker/typeChecker.ts index dcdb89abb..4f0eb9791 100644 --- a/src/transformer/typeChecker/typeChecker.ts +++ b/src/transformer/typeChecker/typeChecker.ts @@ -1,11 +1,15 @@ import * as ts from 'typescript'; -let ___typeChecker: ts.TypeChecker = null; +let ___typeChecker: ts.TypeChecker | null = null; export function SetTypeChecker(typeChecker: ts.TypeChecker): void { ___typeChecker = typeChecker; } export function TypeChecker(): ts.TypeChecker { + if (!___typeChecker) { + throw new Error('SetTypeChecker() must be called prior to TypeChecker()!'); + } + return ___typeChecker; } diff --git a/test/transformer/create-mock-values.test.ts b/test/transformer/create-mock-values.test.ts index 9b95f817c..5b060b3ef 100644 --- a/test/transformer/create-mock-values.test.ts +++ b/test/transformer/create-mock-values.test.ts @@ -6,9 +6,9 @@ describe('create-mock-values', () => { } interface Interface { - property: string; - method(): void; - subInterface: SubInterface; + property: string | null; + method: (() => void) | null; + subInterface: SubInterface | null; } it('should create the mock merging the values provided', () => { @@ -17,7 +17,9 @@ describe('create-mock-values', () => { }); expect(properties.property).toBe('sss'); - properties.method(); + if (typeof properties.method === 'function') { + properties.method(); + } }); it('should create the mock merging the null values provided', () => { diff --git a/test/transformer/descriptor/properties/assignFalsy.test.ts b/test/transformer/descriptor/properties/assignFalsy.test.ts index 643cdcb59..41caef5cd 100644 --- a/test/transformer/descriptor/properties/assignFalsy.test.ts +++ b/test/transformer/descriptor/properties/assignFalsy.test.ts @@ -7,7 +7,7 @@ describe('mocking properties', () => { } interface AnInterface { - bProp: SubInterface; + bProp: SubInterface | null; } it('should correctly assign null', () => { @@ -21,7 +21,7 @@ describe('mocking properties', () => { describe('when property is a value type', () => { interface AnInterface { - aProp: string; + aProp: string | null; } it('should correctly assign null', () => { @@ -35,7 +35,7 @@ describe('mocking properties', () => { describe('when property is a function', () => { interface AnInterface { - aProp(): string; + aProp: (() => string) | null; } it('should correctly assign null', () => { diff --git a/test/transformer/descriptor/typeQuery/typeQueryUndefined.test.ts b/test/transformer/descriptor/typeQuery/typeQueryUndefined.test.ts index 7f514915b..8197bd893 100644 --- a/test/transformer/descriptor/typeQuery/typeQueryUndefined.test.ts +++ b/test/transformer/descriptor/typeQuery/typeQueryUndefined.test.ts @@ -2,6 +2,11 @@ import { createMock } from 'ts-auto-mock'; describe('typeQuery undefined ', () => { it('should return undefined', () => { + // NOTE: undefined really violates the createMock interface, but we want to + // make sure if a set of type declarations are faulty (from DefinitelyTyped + // for example) they will "fail" silently. + + // @ts-ignore const type: typeof undefined = createMock(); expect(type).toBeUndefined(); diff --git a/tsconfig.base.json b/tsconfig.base.json index 03881976d..799fcd45e 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -8,6 +8,7 @@ "experimentalDecorators": true, "removeComments": false, "esModuleInterop": true, + "strictNullChecks": true, "noImplicitAny": false, "lib": [ "es2017", From d1e9c1ba3e321b1d246f2d1bce62c2532d67466f Mon Sep 17 00:00:00 2001 From: Snyk bot Date: Sat, 25 Apr 2020 10:40:50 +0300 Subject: [PATCH 40/43] [Snyk] Upgrade gatsby-plugin-google-analytics from 2.2.2 to 2.2.4 (#307) * fix: upgrade gatsby-plugin-google-analytics from 2.2.2 to 2.2.4 Snyk has created this PR to upgrade gatsby-plugin-google-analytics from 2.2.2 to 2.2.4. See this package in NPM: https://www.npmjs.com/package/gatsby-plugin-google-analytics See this project in Snyk: https://app.snyk.io/org/uittorio/project/b5cc6910-03c3-417f-8b7e-aad8f7c14023?utm_source=github&utm_medium=upgrade-pr * fix: upgrade gatsby-plugin-google-analytics from 2.2.2 to 2.2.4 Snyk has created this PR to upgrade gatsby-plugin-google-analytics from 2.2.2 to 2.2.4. See this package in NPM: https://www.npmjs.com/package/gatsby-plugin-google-analytics See this project in Snyk: https://app.snyk.io/org/uittorio/project/b5cc6910-03c3-417f-8b7e-aad8f7c14023?utm_source=github&utm_medium=upgrade-pr --- ui/package-lock.json | 6 +++--- ui/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/package-lock.json b/ui/package-lock.json index 0c526f76c..76e37ac23 100644 --- a/ui/package-lock.json +++ b/ui/package-lock.json @@ -12158,9 +12158,9 @@ "dev": true }, "gatsby-plugin-google-analytics": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-2.2.2.tgz", - "integrity": "sha512-at0eUPTyetGuPW1ceISAv58a9fwbwsLX9V5ucwKYShs98Spil/FWviukW0f1A2LUsWOGTiVJYReS7IVVw+FlIA==", + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-2.2.4.tgz", + "integrity": "sha512-PupngEov6tod6AOybZMq4Iaaeo6MmzgwBcWljMWLetO5ugPV5rAkTSLJsaINk8wzImQsIDNMBg2GIaU94g1vJw==", "requires": { "@babel/runtime": "^7.8.7", "minimatch": "3.0.4" diff --git a/ui/package.json b/ui/package.json index 97bbffbaf..be788d850 100644 --- a/ui/package.json +++ b/ui/package.json @@ -37,6 +37,6 @@ "typescript": "^3.7.4" }, "dependencies": { - "gatsby-plugin-google-analytics": "^2.2.2" + "gatsby-plugin-google-analytics": "^2.2.4" } } From f58d4cf5cafdbe71892a630cf4f43627825d1586 Mon Sep 17 00:00:00 2001 From: typescripttdd <59508597+typescripttdd@users.noreply.github.com> Date: Sat, 25 Apr 2020 08:43:25 +0100 Subject: [PATCH 41/43] Add DefinitelyTyped Tests data (#305) Co-authored-by: Vittorio Guerriero --- data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json | 2 +- data/definitelyTyped/list.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json b/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json index b95d147f9..1d064238c 100644 --- a/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json +++ b/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json @@ -1 +1 @@ -[{"item":"7zip-min","response":"success"},{"item":"a-big-triangle","response":"success"},{"item":"a11y-dialog","response":"success"},{"item":"abbrev","response":"success"},{"item":"abs","response":"success"},{"item":"absolute","response":"success"},{"item":"abstract-leveldown","response":"success"},{"item":"acc-wizard","response":"success"},{"item":"accept","response":"success"},{"item":"accept-language-parser","response":"success"},{"item":"accepts","response":"success"},{"item":"accounting","response":"success"},{"item":"accurate-interval","response":"success"},{"item":"ace","response":"success"},{"item":"ace-diff","response":"success"},{"item":"acl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"acorn","response":"success"},{"item":"actioncable","response":"success"},{"item":"activedirectory2","response":"success"},{"item":"activestorage","response":"success"},{"item":"activex-access","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adox","response":"success"},{"item":"activex-dao","response":"success"},{"item":"activex-diskquota","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-excel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-faxcomexlib","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-infopath","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-interop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-iwshruntimelibrary","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"activex-libreoffice","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-msforms","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-mshtml","response":"success"},{"item":"activex-msxml2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-office","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-outlook","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-powerpoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-scripting","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-shdocvw","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-shell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-stdole","response":"success"},{"item":"activex-vbide","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-wia","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-word","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"adal-angular","response":"success"},{"item":"add-zero","response":"success"},{"item":"add2home","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/add2home"},{"item":"adhan","response":"success"},{"item":"adlib","response":"success"},{"item":"adm-zip","response":"success"},{"item":"adone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aes-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aframe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ag-channel","response":"success"},{"item":"ag-simple-broker","response":"success"},{"item":"agenda","response":"success"},{"item":"agent-base","response":"success"},{"item":"agiledigital__mule-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"agilite","response":"success"},{"item":"agora-rtc-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"airbnb-prop-types","response":"success"},{"item":"airtable","response":"success"},{"item":"ajv-async","response":"success"},{"item":"ajv-errors","response":"success"},{"item":"ajv-keywords","response":"success"},{"item":"ajv-merge-patch","response":"success"},{"item":"ajv-pack","response":"success"},{"item":"akamai-edgeworkers","response":"success"},{"item":"akumina-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ale-url-parser","response":"success"},{"item":"alertify","response":"success"},{"item":"alex","response":"success"},{"item":"alexa-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"alexa-voice-service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"algebra.js","response":"success"},{"item":"algoliasearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"algoliasearch-helper","response":"success"},{"item":"ali-app","response":"success"},{"item":"ali-oss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"align-text","response":"success"},{"item":"alks-node","response":"success"},{"item":"all-the-package-names","response":"success"},{"item":"alloy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"allure-js-commons","response":"success"},{"item":"almost-equal","response":"success"},{"item":"alpha-bravo","response":"success"},{"item":"alt","response":"success"},{"item":"amap-js-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api"},{"item":"amap-js-api-arrival-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-autocomplete","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-city-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-control-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-district-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-driving","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geocoder","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geolocation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-heatmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-indoor-map","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-line-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map-type","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map3d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api-map3d"},{"item":"amap-js-api-overview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-place-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-riding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-scale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-station-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-tool-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-transfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amazon-cognito-auth-js","response":"success"},{"item":"amazon-connect-streams","response":"success"},{"item":"amazon-product-api","response":"success"},{"item":"amcharts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amp","response":"success"},{"item":"amp-message","response":"success"},{"item":"amphtml-validator","response":"success"},{"item":"amplifier","response":"success"},{"item":"amplify","response":"success"},{"item":"amplify-deferred","response":"success"},{"item":"amplitude-js","response":"success"},{"item":"amqp","response":"success"},{"item":"amqp-connection-manager","response":"success"},{"item":"amqp-rpc","response":"success"},{"item":"amqplib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"analytics-node","response":"success"},{"item":"anchor-js","response":"success"},{"item":"angular","response":"success"},{"item":"angular-agility","response":"success"},{"item":"angular-animate","response":"success"},{"item":"angular-aria","response":"success"},{"item":"angular-block-ui","response":"success"},{"item":"angular-bootstrap-calendar","response":"success"},{"item":"angular-bootstrap-lightbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-breadcrumb","response":"success"},{"item":"angular-clipboard","response":"success"},{"item":"angular-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-cookies","response":"success"},{"item":"angular-deferred-bootstrap","response":"success"},{"item":"angular-desktop-notification","response":"success"},{"item":"angular-dialog-service","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-environment","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-es","response":"success"},{"item":"angular-feature-flags","response":"success"},{"item":"angular-file-saver","response":"success"},{"item":"angular-file-upload","response":"success"},{"item":"angular-formly","response":"success"},{"item":"angular-fullscreen","response":"success"},{"item":"angular-gettext","response":"success"},{"item":"angular-google-analytics","response":"success"},{"item":"angular-gridster","response":"success"},{"item":"angular-growl-v2","response":"success"},{"item":"angular-hotkeys","response":"success"},{"item":"angular-http-auth","response":"success"},{"item":"angular-httpi","response":"success"},{"item":"angular-idle","response":"success"},{"item":"angular-jwt","response":"success"},{"item":"angular-load","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-loading-bar","response":"success"},{"item":"angular-local-storage","response":"success"},{"item":"angular-localforage","response":"success"},{"item":"angular-locker","response":"success"},{"item":"angular-material","response":"success"},{"item":"angular-media-queries","response":"success"},{"item":"angular-meteor","response":"success"},{"item":"angular-mocks","response":"success"},{"item":"angular-modal","response":"success"},{"item":"angular-notifications","response":"success"},{"item":"angular-notify","response":"success"},{"item":"angular-oauth2","response":"success"},{"item":"angular-odata-resources","response":"success"},{"item":"angular-pdfjs-viewer","response":"success"},{"item":"angular-permission","response":"success"},{"item":"angular-promise-tracker","response":"success"},{"item":"angular-q-extras","response":"success"},{"item":"angular-q-spread","response":"success"},{"item":"angular-resource","response":"success"},{"item":"angular-route","response":"success"},{"item":"angular-sanitize","response":"success"},{"item":"angular-scenario","response":"success"},{"item":"angular-scroll","response":"success"},{"item":"angular-signalr-hub","response":"success"},{"item":"angular-spinner","response":"success"},{"item":"angular-storage","response":"success"},{"item":"angular-strap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-toastr","response":"success"},{"item":"angular-toasty","response":"success"},{"item":"angular-tooltips","response":"success"},{"item":"angular-translate","response":"success"},{"item":"angular-ui-bootstrap","response":"success"},{"item":"angular-ui-notification","response":"success"},{"item":"angular-ui-router","response":"success"},{"item":"angular-ui-scroll","response":"success"},{"item":"angular-ui-sortable","response":"success"},{"item":"angular-ui-tree","response":"success"},{"item":"angular-websocket","response":"success"},{"item":"angular-wizard","response":"success"},{"item":"angular-xeditable","response":"success"},{"item":"angular.throttle","response":"success"},{"item":"angularfire","response":"success"},{"item":"angularlocalstorage","response":"success"},{"item":"angulartics","response":"success"},{"item":"animation-frame","response":"success"},{"item":"animejs","response":"success"},{"item":"annyang","response":"success"},{"item":"ansi","response":"success"},{"item":"ansi-escape-sequences","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ansi-styles","response":"success"},{"item":"ansicolors","response":"success"},{"item":"antlr4","response":"success"},{"item":"antlr4-autosuggest","response":"success"},{"item":"any-db","response":"success"},{"item":"any-db-transaction","response":"success"},{"item":"anymatch","response":"success"},{"item":"anyproxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aos","response":"success"},{"item":"apex.js","response":"success"},{"item":"api-error-handler","response":"success"},{"item":"apicache","response":"success"},{"item":"apicalypse","response":"success"},{"item":"apigee-access","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apimocker","response":"success"},{"item":"apollo-codegen","response":"success"},{"item":"apollo-upload-client","response":"success"},{"item":"apostrophe","response":"success"},{"item":"app-module-path","response":"success"},{"item":"app-root-dir","response":"success"},{"item":"app-root-path","response":"success"},{"item":"appdmg","response":"success"},{"item":"append-query","response":"success"},{"item":"appframework","response":"success"},{"item":"apple-mapkit-js","response":"success"},{"item":"apple-music-api","response":"success"},{"item":"apple-signin-api","response":"success"},{"item":"applepayjs","response":"success"},{"item":"appletvjs","response":"success"},{"item":"applicationinsights-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apptimize__apptimize-web-sdk","response":"success"},{"item":"aqb","response":"success"},{"item":"arangodb","response":"success"},{"item":"arbiter","response":"success"},{"item":"arcgis-js-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"arcgis-rest-api","response":"success"},{"item":"arcgis-to-geojson-utils","response":"success"},{"item":"architect","response":"success"},{"item":"archiver","response":"success"},{"item":"archy","response":"success"},{"item":"are-we-there-yet","response":"success"},{"item":"argon2-browser","response":"success"},{"item":"argparse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"args","response":"success"},{"item":"argv","response":"success"},{"item":"aria-query","response":"success"},{"item":"arr-diff","response":"success"},{"item":"arr-union","response":"success"},{"item":"array-binarysearch.closest","response":"success"},{"item":"array-find-index","response":"success"},{"item":"array-foreach","response":"success"},{"item":"array-initial","response":"success"},{"item":"array-sort","response":"success"},{"item":"array-unique","response":"success"},{"item":"array.from","response":"success"},{"item":"array.prototype.flat","response":"success"},{"item":"array.prototype.flatmap","response":"success"},{"item":"artillery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'find' of undefined\n"},{"item":"asana","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asap","response":"success"},{"item":"ascii-art","response":"success"},{"item":"ascii2mathml","response":"success"},{"item":"asciichart","response":"success"},{"item":"asciify","response":"success"},{"item":"asenv","response":"success"},{"item":"asn1","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asn1js","response":"success"},{"item":"aspnet-identity-pw","response":"success"},{"item":"assert","response":"success"},{"item":"assert-equal-jsx","response":"success"},{"item":"assert-plus","response":"success"},{"item":"assertsharp","response":"success"},{"item":"assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n"},{"item":"astring","response":"success"},{"item":"async","response":"success"},{"item":"async-busboy","response":"success"},{"item":"async-cache","response":"success"},{"item":"async-eventemitter","response":"success"},{"item":"async-iterable-stream","response":"success"},{"item":"async-lock","response":"success"},{"item":"async-polling","response":"success"},{"item":"async-retry","response":"success"},{"item":"async-stream-emitter","response":"success"},{"item":"async-stream-generator","response":"success"},{"item":"async-writer","response":"success"},{"item":"async.nexttick","response":"success"},{"item":"asynciterator","response":"success"},{"item":"athenajs","response":"success"},{"item":"atlaskit__button","response":"success"},{"item":"atlaskit__calendar","response":"success"},{"item":"atlaskit__feedback-collector","response":"success"},{"item":"atlaskit__inline-edit","response":"success"},{"item":"atlaskit__layer","response":"success"},{"item":"atlaskit__single-select","response":"success"},{"item":"atlaskit__tree","response":"success"},{"item":"atlassian-crowd-client","response":"success"},{"item":"atmosphere.js","response":"success"},{"item":"atob","response":"success"},{"item":"atob-lite","response":"success"},{"item":"atom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"atom-keymap","response":"success"},{"item":"atom-mocha-test-runner","response":"success"},{"item":"atpl","response":"success"},{"item":"audio-context","response":"success"},{"item":"audio-play","response":"success"},{"item":"audiobuffer-to-wav","response":"success"},{"item":"audiosprite","response":"success"},{"item":"auth-header","response":"success"},{"item":"auth0","response":"success"},{"item":"auth0-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"auth0-js","response":"success"},{"item":"auth0-lock","response":"success"},{"item":"auth0.widget","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"authenticator","response":"success"},{"item":"auto-launch","response":"success"},{"item":"auto-sni","response":"success"},{"item":"autobahn","response":"success"},{"item":"autocannon","response":"success"},{"item":"autoprefixer","response":"success"},{"item":"autoprefixer-core","response":"success"},{"item":"autosize","response":"success"},{"item":"autosuggest-highlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/autosuggest-highlight"},{"item":"avoscloud-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"await-timeout","response":"success"},{"item":"awesomplete","response":"success"},{"item":"aws-iot-device-sdk","response":"success"},{"item":"aws-lambda","response":"success"},{"item":"aws-param-store","response":"success"},{"item":"aws-regions","response":"success"},{"item":"aws-serverless-express","response":"success"},{"item":"aws4","response":"success"},{"item":"axe-webdriverjs","response":"success"},{"item":"axel","response":"success"},{"item":"axios-cancel","response":"success"},{"item":"axios-case-converter","response":"success"},{"item":"axios-curlirize","response":"success"},{"item":"axios-token-interceptor","response":"success"},{"item":"axon","response":"success"},{"item":"azdata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-kusto-data","response":"success"},{"item":"azure-mobile-services-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-sb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"b-spline","response":"success"},{"item":"b2a","response":"success"},{"item":"b64-lite","response":"success"},{"item":"b_","response":"success"},{"item":"babel-code-frame","response":"success"},{"item":"babel-core","response":"success"},{"item":"babel-generator","response":"success"},{"item":"babel-plugin-macros","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-plugin-react-pug","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/babel-plugin-react-pug"},{"item":"babel-plugin-syntax-jsx","response":"success"},{"item":"babel-template","response":"success"},{"item":"babel-traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-types","response":"success"},{"item":"babel-webpack-plugin","response":"success"},{"item":"babel__code-frame","response":"success"},{"item":"babel__core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel__generator","response":"success"},{"item":"babel__standalone","response":"success"},{"item":"babel__template","response":"success"},{"item":"babel__traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babelify","response":"success"},{"item":"babylon","response":"success"},{"item":"babylon-walk","response":"success"},{"item":"babyparse","response":"success"},{"item":"backbone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"backbone-associations","response":"success"},{"item":"backbone-fetch-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone-relational","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.layoutmanager","response":"success"},{"item":"backbone.localstorage","response":"success"},{"item":"backbone.marionette","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.paginator","response":"success"},{"item":"backbone.radio","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backlog-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"backo2","response":"success"},{"item":"backoff","response":"success"},{"item":"backstopjs","response":"success"},{"item":"bagpipes","response":"success"},{"item":"baidu-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"baidumap-web-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/baidumap-web-sdk"},{"item":"balanced-match","response":"success"},{"item":"bandagedbd__bdapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"barbellweights","response":"success"},{"item":"barcode","response":"success"},{"item":"bardjs","response":"success"},{"item":"base-64","response":"success"},{"item":"base16","response":"success"},{"item":"base64-arraybuffer","response":"success"},{"item":"base64-async","response":"success"},{"item":"base64-js","response":"success"},{"item":"base64-stream","response":"success"},{"item":"base64-url","response":"success"},{"item":"base64topdf","response":"success"},{"item":"bases","response":"success"},{"item":"bash-glob","response":"success"},{"item":"basic-auth","response":"success"},{"item":"basicauth-middleware","response":"success"},{"item":"basiclightbox","response":"success"},{"item":"batch-stream","response":"success"},{"item":"battery-level","response":"success"},{"item":"bayes-classifier","response":"success"},{"item":"bazinga-translator","response":"success"},{"item":"bchaddrjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bcp-47","response":"success"},{"item":"bcp-47-match","response":"success"},{"item":"bcrypt","response":"success"},{"item":"bcrypt-nodejs","response":"success"},{"item":"bcryptjs","response":"success"},{"item":"bdfjs","response":"success"},{"item":"beanstalkd","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"beanstalkd-worker","response":"success"},{"item":"bearcat-es6","response":"success"},{"item":"beats","response":"success"},{"item":"bech32","response":"success"},{"item":"behavior3","response":"success"},{"item":"bell","response":"success"},{"item":"benchmark","response":"success"},{"item":"bencode","response":"success"},{"item":"bent","response":"success"},{"item":"better-curry","response":"success"},{"item":"better-queue","response":"success"},{"item":"better-scroll","response":"success"},{"item":"better-sqlite3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"bezier-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"bgiframe","response":"success"},{"item":"bidirectional-map","response":"success"},{"item":"big.js","response":"success"},{"item":"bigi","response":"success"},{"item":"bigint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/bigint/index.d.ts(9,19): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(21,11): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(57,13): error TS2300: Duplicate identifier 'BigInt'.\n"},{"item":"bignum","response":"success"},{"item":"bigscreen","response":"success"},{"item":"bin-pack","response":"success"},{"item":"binary-parse-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"binary-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"binaryextensions","response":"success"},{"item":"bind-ponyfill","response":"success"},{"item":"bindings","response":"success"},{"item":"bintrees","response":"success"},{"item":"bip21","response":"success"},{"item":"bip38","response":"success"},{"item":"bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"bit-twiddle","response":"success"},{"item":"bitcore-lib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bittorrent-protocol","response":"success"},{"item":"bitwise-xor","response":"success"},{"item":"bl","response":"success"},{"item":"blacklist","response":"success"},{"item":"blake2","response":"success"},{"item":"blazor__javascript-interop","response":"success"},{"item":"blazy","response":"success"},{"item":"bleno","response":"success"},{"item":"blessed","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blip-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blissfuljs","response":"success"},{"item":"blob-stream","response":"success"},{"item":"blob-to-buffer","response":"success"},{"item":"blocked","response":"success"},{"item":"blockies","response":"success"},{"item":"blocks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"bloem","response":"success"},{"item":"bloom-filter","response":"success"},{"item":"bloomfilter","response":"success"},{"item":"blue-tape","response":"success"},{"item":"bluebird","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"bluebird-global","response":"success"},{"item":"bluebird-retry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"blueimp-load-image","response":"success"},{"item":"blueimp-md5","response":"success"},{"item":"bmp-js","response":"success"},{"item":"bn.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"body-parser","response":"success"},{"item":"body-parser-xml","response":"success"},{"item":"body-scroll-lock","response":"success"},{"item":"bonjour","response":"success"},{"item":"bookshelf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"boolify-string","response":"success"},{"item":"boom","response":"success"},{"item":"bootbox","response":"success"},{"item":"bootpag","response":"success"},{"item":"bootstrap","response":"success"},{"item":"bootstrap-3-typeahead","response":"success"},{"item":"bootstrap-colorpicker","response":"success"},{"item":"bootstrap-datepicker","response":"success"},{"item":"bootstrap-fileinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"bootstrap-growl-ifightcrime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-maxlength","response":"success"},{"item":"bootstrap-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"bootstrap-notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-select","response":"success"},{"item":"bootstrap-slider","response":"success"},{"item":"bootstrap-switch","response":"success"},{"item":"bootstrap-toggle","response":"success"},{"item":"bootstrap-touchspin","response":"success"},{"item":"bootstrap-treeview","response":"success"},{"item":"bootstrap-validator","response":"success"},{"item":"bootstrap.paginator","response":"success"},{"item":"bootstrap.timepicker","response":"success"},{"item":"bootstrap.v3.datetimepicker","response":"success"},{"item":"bootstrap3-dialog","response":"success"},{"item":"bounce.js","response":"success"},{"item":"box-intersect","response":"success"},{"item":"box2d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bpmn-moddle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"brace-expansion","response":"success"},{"item":"braces","response":"success"},{"item":"brainhubeu__react-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"braintree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"braintree-web","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"braintree-web-drop-in","response":"success"},{"item":"breeze","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bresenham","response":"success"},{"item":"bricks.js","response":"success"},{"item":"bristol","response":"success"},{"item":"bristol-sentry","response":"success"},{"item":"bro-fs","response":"success"},{"item":"brorand","response":"success"},{"item":"brotli-webpack-plugin","response":"success"},{"item":"browser-bunyan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"browser-fingerprint","response":"success"},{"item":"browser-harness","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'kind' of undefined\n"},{"item":"browser-image-compression","response":"success"},{"item":"browser-or-node","response":"success"},{"item":"browser-pack","response":"success"},{"item":"browser-report","response":"success"},{"item":"browser-resolve","response":"success"},{"item":"browser-sync","response":"success"},{"item":"browser-sync-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"browserify","response":"success"},{"item":"browserslist","response":"success"},{"item":"browserslist-useragent","response":"success"},{"item":"bs58","response":"success"},{"item":"bser","response":"success"},{"item":"bson","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"btoa","response":"success"},{"item":"btoa-lite","response":"success"},{"item":"buble","response":"success"},{"item":"bucks","response":"success"},{"item":"buffer-compare","response":"success"},{"item":"buffer-crc32","response":"success"},{"item":"buffer-equal","response":"success"},{"item":"buffer-from","response":"success"},{"item":"buffer-reader","response":"success"},{"item":"buffer-split","response":"success"},{"item":"buffer-xor","response":"success"},{"item":"bufferhelper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"buffers","response":"success"},{"item":"bufferstream","response":"success"},{"item":"build-output-script","response":"success"},{"item":"bull","response":"success"},{"item":"bull-arena","response":"success"},{"item":"bull-board","response":"success"},{"item":"bulma-calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"bump-regex","response":"success"},{"item":"bunnymq","response":"success"},{"item":"bunyan","response":"success"},{"item":"bunyan-blackhole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"bunyan-config","response":"success"},{"item":"bunyan-format","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"bunyan-logentries","response":"success"},{"item":"bunyan-prettystream","response":"success"},{"item":"bunyan-seq","response":"success"},{"item":"bunyan-winston-adapter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"burns","response":"success"},{"item":"busboy","response":"success"},{"item":"business-rules-engine","response":"success"},{"item":"bwip-js","response":"success"},{"item":"byline","response":"success"},{"item":"byte-range","response":"success"},{"item":"bytebuffer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"bytes","response":"success"},{"item":"bytewise","response":"success"},{"item":"c3","response":"success"},{"item":"cacache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cache-manager","response":"success"},{"item":"cacheable-request","response":"success"},{"item":"cached-path-relative","response":"success"},{"item":"cadesplugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"cal-heatmap","response":"success"},{"item":"calendar","response":"success"},{"item":"calidation","response":"success"},{"item":"callback-to-async-iterator","response":"success"},{"item":"caller","response":"success"},{"item":"callsite","response":"success"},{"item":"calq","response":"success"},{"item":"camelcase-keys-deep","response":"success"},{"item":"camo","response":"success"},{"item":"camunda-external-task-client-js","response":"success"},{"item":"cancan","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"caniuse-api","response":"success"},{"item":"caniuse-lite","response":"success"},{"item":"cannon","response":"success"},{"item":"canvas-confetti","response":"success"},{"item":"canvas-gauges","response":"success"},{"item":"canvasjs","response":"success"},{"item":"canvaskit-wasm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"capitalize","response":"success"},{"item":"capture-console","response":"success"},{"item":"carbon-components-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"carbon__colors","response":"success"},{"item":"carbon__icon-helpers","response":"success"},{"item":"carbon__icons-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__layout","response":"success"},{"item":"carbon__motion","response":"success"},{"item":"carbon__pictograms-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__themes","response":"success"},{"item":"carbon__type","response":"success"},{"item":"carbone","response":"success"},{"item":"card-validator","response":"success"},{"item":"carlo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"case-sensitive-paths-webpack-plugin","response":"success"},{"item":"caseless","response":"success"},{"item":"cash","response":"success"},{"item":"cashaddrjs","response":"success"},{"item":"casperjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"cassandra-store","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"cassanknex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"catbox-memory","response":"success"},{"item":"catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"cavy","response":"success"},{"item":"cbor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ccap","response":"success"},{"item":"ccapture.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"center-align","response":"success"},{"item":"centra","response":"success"},{"item":"cesium","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cfenv","response":"success"},{"item":"cfn-response","response":"success"},{"item":"chai","response":"success"},{"item":"chai-almost","response":"success"},{"item":"chai-arrays","response":"success"},{"item":"chai-as-promised","response":"success"},{"item":"chai-datetime","response":"success"},{"item":"chai-dom","response":"success"},{"item":"chai-enzyme","response":"success"},{"item":"chai-fs","response":"success"},{"item":"chai-fuzzy","response":"success"},{"item":"chai-jest-snapshot","response":"success"},{"item":"chai-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"chai-json-schema","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"chai-like","response":"success"},{"item":"chai-moment","response":"success"},{"item":"chai-oequal","response":"success"},{"item":"chai-roughly","response":"success"},{"item":"chai-spies","response":"success"},{"item":"chai-string","response":"success"},{"item":"chai-style","response":"success"},{"item":"chai-subset","response":"success"},{"item":"chai-things","response":"success"},{"item":"chai-uuid","response":"success"},{"item":"chai-xml","response":"success"},{"item":"chalk-animation","response":"success"},{"item":"chalk-pipe","response":"success"},{"item":"chance","response":"success"},{"item":"change-case-object","response":"success"},{"item":"change-emitter","response":"success"},{"item":"changelog-parser","response":"success"},{"item":"chardet","response":"success"},{"item":"charm","response":"success"},{"item":"charset","response":"success"},{"item":"chart.js","response":"success"},{"item":"chartist","response":"success"},{"item":"chartmogul-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chayns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"check-error","response":"success"},{"item":"check-sum","response":"success"},{"item":"check-types","response":"success"},{"item":"checkstyle-formatter","response":"success"},{"item":"checksum","response":"success"},{"item":"cheerio","response":"success"},{"item":"chess.js","response":"success"},{"item":"chessboardjs","response":"success"},{"item":"child-process-promise","response":"success"},{"item":"chmodr","response":"success"},{"item":"chocolatechipjs","response":"success"},{"item":"chordsheetjs","response":"success"},{"item":"chosen-js","response":"success"},{"item":"chownr","response":"success"},{"item":"chroma-js","response":"success"},{"item":"chrome","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"chrome-apps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromecast-caf-receiver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"chromecast-caf-sender","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromedriver","response":"success"},{"item":"chui","response":"success"},{"item":"chunk","response":"success"},{"item":"chunk-text","response":"success"},{"item":"ci-info","response":"success"},{"item":"cipher-base","response":"success"},{"item":"circuit-breaker-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"circular-dependency-plugin","response":"success"},{"item":"circular-json","response":"success"},{"item":"ckeditor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clamp","response":"success"},{"item":"clamp-js","response":"success"},{"item":"clamp-js-main","response":"success"},{"item":"clarinet","response":"success"},{"item":"classnames","response":"success"},{"item":"cldrjs","response":"success"},{"item":"clean-css","response":"success"},{"item":"clean-git-ref","response":"success"},{"item":"clean-regexp","response":"success"},{"item":"clear","response":"success"},{"item":"clearbladejs-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"clearbladejs-node","response":"success"},{"item":"clearbladejs-server","response":"success"},{"item":"cleave.js","response":"success"},{"item":"cli","response":"success"},{"item":"cli-box","response":"success"},{"item":"cli-color","response":"success"},{"item":"cli-interact","response":"success"},{"item":"cli-progress","response":"success"},{"item":"cli-spinner","response":"success"},{"item":"cli-spinners","response":"success"},{"item":"cli-table","response":"success"},{"item":"cli-table2","response":"success"},{"item":"client-sessions","response":"success"},{"item":"clientjs","response":"success"},{"item":"cliff","response":"success"},{"item":"clipboard","response":"success"},{"item":"clipboard-js","response":"success"},{"item":"clmtrackr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clndr","response":"success"},{"item":"clockpicker","response":"success"},{"item":"clone","response":"success"},{"item":"clone-deep","response":"success"},{"item":"cloneable-readable","response":"success"},{"item":"cloner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"closure-compiler","response":"success"},{"item":"cloud-config-client","response":"success"},{"item":"cloud-env","response":"success"},{"item":"cloudflare-apps","response":"success"},{"item":"clovelced-plugin-audiomanagement","response":"success"},{"item":"clownface","response":"success"},{"item":"cls-hooked","response":"success"},{"item":"clui","response":"success"},{"item":"clusterize.js","response":"success"},{"item":"cmd-shim","response":"success"},{"item":"cnpj","response":"success"},{"item":"co","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"co-body","response":"success"},{"item":"co-views","response":"success"},{"item":"code","response":"success"},{"item":"codeflask","response":"success"},{"item":"codegen.macro","response":"success"},{"item":"codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"codependency","response":"success"},{"item":"coffeeify","response":"success"},{"item":"coinbase","response":"success"},{"item":"coinbase-commerce-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"coinlist","response":"success"},{"item":"coinstring","response":"success"},{"item":"collections","response":"success"},{"item":"collectionsjs","response":"success"},{"item":"color","response":"success"},{"item":"color-check","response":"success"},{"item":"color-convert","response":"success"},{"item":"color-diff","response":"success"},{"item":"color-hash","response":"success"},{"item":"color-name","response":"success"},{"item":"color-namer","response":"success"},{"item":"color-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"color-support","response":"success"},{"item":"colorbrewer","response":"success"},{"item":"colornames","response":"success"},{"item":"colresizable","response":"success"},{"item":"columnify","response":"success"},{"item":"com.darktalker.cordova.screenshot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"com.wikitude.phonegap.wikitudeplugin","response":"success"},{"item":"combinations","response":"success"},{"item":"combine-reducers","response":"success"},{"item":"combine-source-map","response":"success"},{"item":"combined-stream","response":"success"},{"item":"combokeys","response":"success"},{"item":"cometd","response":"success"},{"item":"command-exists","response":"success"},{"item":"command-line-args","response":"success"},{"item":"command-line-commands","response":"success"},{"item":"command-line-usage","response":"success"},{"item":"commander-remaining-args","response":"success"},{"item":"commangular","response":"success"},{"item":"comment-json","response":"success"},{"item":"commercetools__enzyme-extensions","response":"success"},{"item":"commitlint__load","response":"success"},{"item":"common-errors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"common-prefix","response":"success"},{"item":"common-tags","response":"success"},{"item":"commondir","response":"success"},{"item":"commonmark","response":"success"},{"item":"compare-func","response":"success"},{"item":"compare-function","response":"success"},{"item":"compare-version","response":"success"},{"item":"compass-vertical-rhythm","response":"success"},{"item":"complex","response":"success"},{"item":"complex.js","response":"success"},{"item":"component-emitter","response":"success"},{"item":"compose-function","response":"success"},{"item":"compress.js","response":"success"},{"item":"compressible","response":"success"},{"item":"compression","response":"success"},{"item":"compression-webpack-plugin","response":"success"},{"item":"compute-argmax","response":"success"},{"item":"compute-quantile","response":"success"},{"item":"compute-stdev","response":"success"},{"item":"concat-map","response":"success"},{"item":"concat-stream","response":"success"},{"item":"concaveman","response":"success"},{"item":"concurrently","response":"success"},{"item":"conditional","response":"success"},{"item":"conductor-animate","response":"success"},{"item":"confidence","response":"success"},{"item":"config","response":"success"},{"item":"config-yaml","response":"success"},{"item":"configs-overload","response":"success"},{"item":"configstore","response":"success"},{"item":"configurable","response":"success"},{"item":"confit","response":"success"},{"item":"connect","response":"success"},{"item":"connect-azuretables","response":"success"},{"item":"connect-busboy","response":"success"},{"item":"connect-datadog","response":"success"},{"item":"connect-ensure-login","response":"success"},{"item":"connect-flash","response":"success"},{"item":"connect-history-api-fallback","response":"success"},{"item":"connect-history-api-fallback-exclusions","response":"success"},{"item":"connect-livereload","response":"success"},{"item":"connect-modrewrite","response":"success"},{"item":"connect-mongodb-session","response":"success"},{"item":"connect-pg-simple","response":"success"},{"item":"connect-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"connect-sequence","response":"success"},{"item":"connect-slashes","response":"success"},{"item":"connect-timeout","response":"success"},{"item":"connect-trim-body","response":"success"},{"item":"console-log-level","response":"success"},{"item":"console-stamp","response":"success"},{"item":"console-ui","response":"success"},{"item":"consolidate","response":"success"},{"item":"consul","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"consumable-stream","response":"success"},{"item":"contains-path","response":"success"},{"item":"content-disposition","response":"success"},{"item":"content-range","response":"success"},{"item":"content-type","response":"success"},{"item":"contentful-resolve-response","response":"success"},{"item":"contentstack","response":"success"},{"item":"contextjs","response":"success"},{"item":"continuation-local-storage","response":"success"},{"item":"contract-proxy-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"conventional-changelog","response":"success"},{"item":"conventional-changelog-config-spec","response":"success"},{"item":"conventional-changelog-core","response":"success"},{"item":"conventional-changelog-preset-loader","response":"success"},{"item":"conventional-changelog-writer","response":"success"},{"item":"conventional-commits-parser","response":"success"},{"item":"conventional-recommended-bump","response":"success"},{"item":"convert-layout","response":"success"},{"item":"convert-source-map","response":"success"},{"item":"convert-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"convert-units","response":"success"},{"item":"convict","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"cookie","response":"success"},{"item":"cookie-parser","response":"success"},{"item":"cookie-session","response":"success"},{"item":"cookie-signature","response":"success"},{"item":"cookie_js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"cookiejar","response":"success"},{"item":"cookies","response":"success"},{"item":"copy","response":"success"},{"item":"copy-paste","response":"success"},{"item":"copy-webpack-plugin","response":"success"},{"item":"copyfiles","response":"success"},{"item":"cordova","response":"success"},{"item":"cordova-ionic","response":"success"},{"item":"cordova-plugin-app-version","response":"success"},{"item":"cordova-plugin-background-mode","response":"success"},{"item":"cordova-plugin-badge","response":"success"},{"item":"cordova-plugin-ble-central","response":"success"},{"item":"cordova-plugin-bluetoothclassic-serial","response":"success"},{"item":"cordova-plugin-canvascamera","response":"success"},{"item":"cordova-plugin-device-name","response":"success"},{"item":"cordova-plugin-email-composer","response":"success"},{"item":"cordova-plugin-file-opener2","response":"success"},{"item":"cordova-plugin-ibeacon","response":"success"},{"item":"cordova-plugin-insomnia","response":"success"},{"item":"cordova-plugin-keyboard","response":"success"},{"item":"cordova-plugin-mapsforge","response":"success"},{"item":"cordova-plugin-ms-adal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cordova-plugin-native-keyboard","response":"success"},{"item":"cordova-plugin-ouralabs","response":"success"},{"item":"cordova-plugin-qrscanner","response":"success"},{"item":"cordova-plugin-spinner","response":"success"},{"item":"cordova-plugin-websql","response":"success"},{"item":"cordova-sqlite-storage","response":"success"},{"item":"cordova-universal-links-plugin","response":"success"},{"item":"cordova_app_version_plugin","response":"success"},{"item":"cordovarduino","response":"success"},{"item":"core-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"core-object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"correlation-id","response":"success"},{"item":"cors","response":"success"},{"item":"cote","response":"success"},{"item":"couchbase","response":"success"},{"item":"countdown","response":"success"},{"item":"counterpart","response":"success"},{"item":"countries-and-timezones","response":"success"},{"item":"country-data","response":"success"},{"item":"country-list","response":"success"},{"item":"country-select-js","response":"success"},{"item":"coverup","response":"success"},{"item":"cpx","response":"success"},{"item":"cqrs-domain","response":"success"},{"item":"cradle","response":"success"},{"item":"crc","response":"success"},{"item":"create-error","response":"success"},{"item":"create-hash","response":"success"},{"item":"create-hmac","response":"success"},{"item":"create-react-class","response":"success"},{"item":"create-subscription","response":"success"},{"item":"create-xpub","response":"success"},{"item":"createjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/createjs"},{"item":"createjs-lib","response":"success"},{"item":"credential","response":"success"},{"item":"credit-card-type","response":"success"},{"item":"critters-webpack-plugin","response":"success"},{"item":"cron","response":"success"},{"item":"cron-converter","response":"success"},{"item":"croppie","response":"success"},{"item":"cross-spawn","response":"success"},{"item":"cross-storage","response":"success"},{"item":"crossfilter","response":"success"},{"item":"crossroads","response":"success"},{"item":"crpc","response":"success"},{"item":"crumb","response":"success"},{"item":"cryptex","response":"success"},{"item":"cryptiles","response":"success"},{"item":"crypto-js","response":"success"},{"item":"cryptojs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cryptr","response":"success"},{"item":"cson","response":"success"},{"item":"csp-html-webpack-plugin","response":"success"},{"item":"csprng","response":"success"},{"item":"csrf","response":"success"},{"item":"css","response":"success"},{"item":"css-font-loading-module","response":"success"},{"item":"css-mediaquery","response":"success"},{"item":"css-modules","response":"success"},{"item":"css-modules-loader-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"css-modules-require-hook","response":"success"},{"item":"css-selector-tokenizer","response":"success"},{"item":"css-to-style","response":"success"},{"item":"css-tree","response":"success"},{"item":"cssbeautify","response":"success"},{"item":"cssesc","response":"success"},{"item":"cssnano","response":"success"},{"item":"csso","response":"success"},{"item":"csurf","response":"success"},{"item":"csv2json","response":"success"},{"item":"csvrow","response":"success"},{"item":"csvtojson","response":"success"},{"item":"cucumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cuid","response":"success"},{"item":"cuint","response":"success"},{"item":"currency-formatter","response":"success"},{"item":"current-git-branch","response":"success"},{"item":"cuss","response":"success"},{"item":"custom-error-generator","response":"success"},{"item":"custom-functions-runtime","response":"success"},{"item":"cwd","response":"success"},{"item":"cwise","response":"success"},{"item":"cwise-compiler","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"cwise-parser","response":"success"},{"item":"cyberblast__config","response":"success"},{"item":"cyberblast__logger","response":"success"},{"item":"cyberblast__webserver","response":"success"},{"item":"cybozulabs-md5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cypress-axe","response":"success"},{"item":"cypress-cucumber-preprocessor","response":"success"},{"item":"cypress-image-snapshot","response":"success"},{"item":"cytoscape","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d","response":"success"},{"item":"d20","response":"success"},{"item":"d3","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d3-array","response":"success"},{"item":"d3-axis","response":"success"},{"item":"d3-box","response":"success"},{"item":"d3-brush","response":"success"},{"item":"d3-chord","response":"success"},{"item":"d3-cloud","response":"success"},{"item":"d3-collection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"d3-color","response":"success"},{"item":"d3-contour","response":"success"},{"item":"d3-delaunay","response":"success"},{"item":"d3-dispatch","response":"success"},{"item":"d3-drag","response":"success"},{"item":"d3-dsv","response":"success"},{"item":"d3-ease","response":"success"},{"item":"d3-fetch","response":"success"},{"item":"d3-force","response":"success"},{"item":"d3-format","response":"success"},{"item":"d3-geo","response":"success"},{"item":"d3-graphviz","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-hexbin","response":"success"},{"item":"d3-hierarchy","response":"success"},{"item":"d3-hsv","response":"success"},{"item":"d3-interpolate","response":"success"},{"item":"d3-interpolate-path","response":"success"},{"item":"d3-path","response":"success"},{"item":"d3-polygon","response":"success"},{"item":"d3-quadtree","response":"success"},{"item":"d3-queue","response":"success"},{"item":"d3-random","response":"success"},{"item":"d3-request","response":"success"},{"item":"d3-require","response":"success"},{"item":"d3-sankey","response":"success"},{"item":"d3-scale","response":"success"},{"item":"d3-scale-chromatic","response":"success"},{"item":"d3-selection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"d3-selection-multi","response":"success"},{"item":"d3-shape","response":"success"},{"item":"d3-time","response":"success"},{"item":"d3-time-format","response":"success"},{"item":"d3-timer","response":"success"},{"item":"d3-tip","response":"success"},{"item":"d3-transition","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-voronoi","response":"success"},{"item":"d3-zoom","response":"success"},{"item":"d3.slider","response":"success"},{"item":"d3kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3pie","response":"success"},{"item":"dagre","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-d3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-layout","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dashify","response":"success"},{"item":"dat.gui","response":"success"},{"item":"data-driven","response":"success"},{"item":"datadog-metrics","response":"success"},{"item":"datadog-statsd-metrics-collector","response":"success"},{"item":"datadog-tracer","response":"success"},{"item":"datadog-winston","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"datastore-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"datastore-level","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"datatables.net","response":"success"},{"item":"datatables.net-autofill","response":"success"},{"item":"datatables.net-buttons","response":"success"},{"item":"datatables.net-colreorder","response":"success"},{"item":"datatables.net-fixedcolumns","response":"success"},{"item":"datatables.net-fixedheader","response":"success"},{"item":"datatables.net-keytable","response":"success"},{"item":"datatables.net-rowgroup","response":"success"},{"item":"datatables.net-rowreorder","response":"success"},{"item":"datatables.net-scroller","response":"success"},{"item":"datatables.net-select","response":"success"},{"item":"date-and-time","response":"success"},{"item":"date-arithmetic","response":"success"},{"item":"date-fp","response":"success"},{"item":"date-now","response":"success"},{"item":"date-range-array","response":"success"},{"item":"date-utils","response":"success"},{"item":"date.format.js","response":"success"},{"item":"dateformat","response":"success"},{"item":"datejs","response":"success"},{"item":"daterangepicker","response":"success"},{"item":"dav","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dayzed","response":"success"},{"item":"db-migrate-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db-migrate-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db.js","response":"success"},{"item":"dbus","response":"success"},{"item":"dc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"deasync","response":"success"},{"item":"death","response":"success"},{"item":"debessmann","response":"success"},{"item":"debounce","response":"success"},{"item":"debounce-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"debug","response":"success"},{"item":"decay","response":"success"},{"item":"decode-entities","response":"success"},{"item":"decode-uri-component","response":"success"},{"item":"decomment","response":"success"},{"item":"decompress","response":"success"},{"item":"decorum","response":"success"},{"item":"dedent","response":"success"},{"item":"deep-assign","response":"success"},{"item":"deep-diff","response":"success"},{"item":"deep-equal","response":"success"},{"item":"deep-equal-in-any-order","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"deep-extend","response":"success"},{"item":"deep-freeze","response":"success"},{"item":"deep-freeze-strict","response":"success"},{"item":"deezer-sdk","response":"success"},{"item":"default-gateway","response":"success"},{"item":"defaults","response":"success"},{"item":"defaults-deep","response":"success"},{"item":"defer-promise","response":"success"},{"item":"define-properties","response":"success"},{"item":"defined","response":"success"},{"item":"deglob","response":"success"},{"item":"deindent","response":"success"},{"item":"deku","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"delaunator","response":"success"},{"item":"delete-empty","response":"success"},{"item":"deline","response":"success"},{"item":"deluge","response":"success"},{"item":"denodeify","response":"success"},{"item":"deoxxa-content-type","response":"success"},{"item":"depd","response":"success"},{"item":"dependency-tree","response":"success"},{"item":"deployjava","response":"success"},{"item":"deprecate","response":"success"},{"item":"deps-sort","response":"success"},{"item":"derhuerst__cli-on-key","response":"success"},{"item":"destroy","response":"success"},{"item":"destroy-on-hwm","response":"success"},{"item":"detect-character-encoding","response":"success"},{"item":"detect-emoji-support","response":"success"},{"item":"detect-hover","response":"success"},{"item":"detect-it","response":"success"},{"item":"detect-node","response":"success"},{"item":"detect-passive-events","response":"success"},{"item":"detect-pointer","response":"success"},{"item":"detect-port","response":"success"},{"item":"detect-touch-events","response":"success"},{"item":"detective","response":"success"},{"item":"detox","response":"success"},{"item":"dev-ip","response":"success"},{"item":"devexpress-aspnetcore-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"devexpress-web","response":"success"},{"item":"dexie-batch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"df-visible","response":"success"},{"item":"dhtmlxgantt","response":"success"},{"item":"dhtmlxscheduler","response":"success"},{"item":"di","response":"success"},{"item":"di-lite","response":"success"},{"item":"diacritics","response":"success"},{"item":"dialog-polyfill","response":"success"},{"item":"dialogflow-fulfillment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n"},{"item":"dicer","response":"success"},{"item":"didyoumean","response":"success"},{"item":"diff","response":"success"},{"item":"diff-match-patch","response":"success"},{"item":"diff2html","response":"success"},{"item":"diffie-hellman","response":"success"},{"item":"difflib","response":"success"},{"item":"digibyte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dinero.js","response":"success"},{"item":"dingtalk-robot-sender","response":"success"},{"item":"dir-glob","response":"success"},{"item":"dir-resolve","response":"success"},{"item":"dir-walker-gen","response":"success"},{"item":"direction","response":"success"},{"item":"dirname-regex","response":"success"},{"item":"dirty-chai","response":"success"},{"item":"discontinuous-range","response":"success"},{"item":"discord-rpc","response":"success"},{"item":"discourse-sso","response":"success"},{"item":"dispatchr","response":"success"},{"item":"disposable-email-domains","response":"success"},{"item":"distributions","response":"success"},{"item":"distributions-poisson-quantile","response":"success"},{"item":"diva.js","response":"success"},{"item":"djv","response":"success"},{"item":"dkim-signer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dlv","response":"success"},{"item":"dnssd","response":"success"},{"item":"doccookies","response":"success"},{"item":"dock-spawn","response":"success"},{"item":"docker-events","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"dockerode","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"docopt","response":"success"},{"item":"doctrine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"document-ready","response":"success"},{"item":"documentdb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"documentdb-server","response":"success"},{"item":"documentdb-session","response":"success"},{"item":"docx-templates","response":"success"},{"item":"dogapi","response":"success"},{"item":"doge-seed","response":"success"},{"item":"dojo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dom-clipboard-api","response":"success"},{"item":"dom-inputevent","response":"success"},{"item":"dom-matches","response":"success"},{"item":"dom-mediacapture-record","response":"success"},{"item":"dom-parser","response":"success"},{"item":"dom-to-image","response":"success"},{"item":"dom4","response":"success"},{"item":"domexception","response":"success"},{"item":"domhandler","response":"success"},{"item":"domo","response":"success"},{"item":"dompurify","response":"success"},{"item":"domready","response":"success"},{"item":"domtagger","response":"success"},{"item":"domurl","response":"success"},{"item":"domutils","response":"success"},{"item":"donna","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dookie","response":"success"},{"item":"dos2unix","response":"success"},{"item":"dot","response":"success"},{"item":"dot-object","response":"success"},{"item":"dot-prop-immutable","response":"success"},{"item":"dotdir-regex","response":"success"},{"item":"dotdotdot","response":"success"},{"item":"dotenv-flow","response":"success"},{"item":"dotenv-parse-variables","response":"success"},{"item":"dotenv-safe","response":"success"},{"item":"dotenv-webpack","response":"success"},{"item":"dotfile-regex","response":"success"},{"item":"dottie","response":"success"},{"item":"double-ended-queue","response":"success"},{"item":"doublearray","response":"success"},{"item":"doubleclick-gpt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"download","response":"success"},{"item":"downloadjs","response":"success"},{"item":"downscale","response":"success"},{"item":"dplayer","response":"success"},{"item":"draft-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draft-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draftjs-to-html","response":"success"},{"item":"drag-timetable","response":"success"},{"item":"draggabilly","response":"success"},{"item":"dragscroll","response":"success"},{"item":"dragselect","response":"success"},{"item":"dragster","response":"success"},{"item":"dragula","response":"success"},{"item":"driftless","response":"success"},{"item":"drivelist","response":"success"},{"item":"dropbox-chooser","response":"success"},{"item":"dropboxjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dropkickjs","response":"success"},{"item":"dropzone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ds18b20","response":"success"},{"item":"dsv","response":"success"},{"item":"dts-bundle","response":"success"},{"item":"dts-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"du","response":"success"},{"item":"duckduckgo-images-api","response":"success"},{"item":"duo_web_sdk","response":"success"},{"item":"duosecurity__duo_web","response":"success"},{"item":"duplexer2","response":"success"},{"item":"duplexer3","response":"success"},{"item":"duplexify","response":"success"},{"item":"duplicate-package-checker-webpack-plugin","response":"success"},{"item":"durandal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dush","response":"success"},{"item":"dustjs-linkedin","response":"success"},{"item":"dv","response":"success"},{"item":"dvtng-jss","response":"success"},{"item":"dw-bxslider-4","response":"success"},{"item":"dwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"dygraphs","response":"success"},{"item":"dymo-label-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dynamic-time-warping","response":"success"},{"item":"dynamodb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"dynatable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dynatrace","response":"success"},{"item":"dynogels","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"each","response":"success"},{"item":"earcut","response":"success"},{"item":"easeljs","response":"success"},{"item":"eases","response":"success"},{"item":"easy-api-request","response":"success"},{"item":"easy-jsend","response":"success"},{"item":"easy-rbac","response":"success"},{"item":"easy-session","response":"success"},{"item":"easy-table","response":"success"},{"item":"easy-xapi","response":"success"},{"item":"easy-xapi-utils","response":"success"},{"item":"easydate","response":"success"},{"item":"ebml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ebongarde-root","response":"success"},{"item":"eccrypto","response":"success"},{"item":"echarts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ecma-proposal-math-extensions","response":"success"},{"item":"ecore","response":"success"},{"item":"ecurve","response":"success"},{"item":"ed25519","response":"success"},{"item":"ed2curve","response":"success"},{"item":"edmonds-blossom","response":"success"},{"item":"edtr-io__mathquill","response":"success"},{"item":"ee-first","response":"success"},{"item":"egg-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"egg.js","response":"success"},{"item":"egjs__axes","response":"success"},{"item":"egjs__component","response":"success"},{"item":"ej.web.all","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"ejs","response":"success"},{"item":"ejs-locals","response":"success"},{"item":"ejson","response":"success"},{"item":"elastic.js","response":"success"},{"item":"elasticlunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"elasticsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"electron-clipboard-extended","response":"success"},{"item":"electron-devtools-installer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"electron-json-storage","response":"success"},{"item":"electron-load-devtool","response":"success"},{"item":"electron-localshortcut","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-notifications","response":"success"},{"item":"electron-notify","response":"success"},{"item":"electron-packager","response":"success"},{"item":"electron-prompt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-settings","response":"success"},{"item":"electron-spellchecker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-window-state","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"element-closest","response":"success"},{"item":"element-resize-detector","response":"success"},{"item":"element-resize-event","response":"success"},{"item":"elementtree","response":"success"},{"item":"elgamal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"elliptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"elm","response":"success"},{"item":"elo-rank","response":"success"},{"item":"elv","response":"success"},{"item":"email-templates","response":"success"},{"item":"ember","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data__adapter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__model","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__serializer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-data__store","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-feature-flags","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-modal-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-resolver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-testing-helpers","response":"success"},{"item":"ember__application","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember__controller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__debug","response":"success"},{"item":"ember__engine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__error","response":"success"},{"item":"ember__object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__ordered-set","response":"success"},{"item":"ember__polyfills","response":"success"},{"item":"ember__routing","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__runloop","response":"success"},{"item":"ember__service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__string","response":"success"},{"item":"ember__template","response":"success"},{"item":"ember__test","response":"success"},{"item":"ember__test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"emissary","response":"success"},{"item":"emoji-flags","response":"success"},{"item":"emoji-js","response":"success"},{"item":"emoji-mart","response":"success"},{"item":"emoji-regex","response":"success"},{"item":"emoji-strip","response":"success"},{"item":"emojione","response":"success"},{"item":"empower","response":"success"},{"item":"empty-dir","response":"success"},{"item":"emscripten","response":"success"},{"item":"encodeurl","response":"success"},{"item":"encoding-down","response":"success"},{"item":"encoding-japanese","response":"success"},{"item":"end-of-stream","response":"success"},{"item":"engine-check","response":"success"},{"item":"engine.io","response":"success"},{"item":"engine.io-client","response":"success"},{"item":"enhanced-resolve","response":"success"},{"item":"enigma.js","response":"success"},{"item":"enquire.js","response":"success"},{"item":"ensure-posix-path","response":"success"},{"item":"ent","response":"success"},{"item":"entities","response":"success"},{"item":"entria__relay-experimental","response":"success"},{"item":"env-ci","response":"success"},{"item":"env-to-object","response":"success"},{"item":"envify","response":"success"},{"item":"enzyme","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-adapter-react-15","response":"success"},{"item":"enzyme-adapter-react-15.4","response":"success"},{"item":"enzyme-adapter-react-16","response":"success"},{"item":"enzyme-async-helpers","response":"success"},{"item":"enzyme-react-intl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-to-json","response":"success"},{"item":"eonasdan-bootstrap-datetimepicker","response":"success"},{"item":"epiceditor","response":"success"},{"item":"epilogue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"epub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"eq.js","response":"success"},{"item":"error-subclass","response":"success"},{"item":"errorhandler","response":"success"},{"item":"es-feature-detection","response":"success"},{"item":"es-module-lexer","response":"success"},{"item":"es-to-primitive","response":"success"},{"item":"es6-collections","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/es6-collections/index.d.ts(22,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(47,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(53,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(67,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(73,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakMap', but here has type 'WeakMap'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(102,24): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(103,48): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakSet', but here has type 'WeakSet'.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(28,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(34,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(54,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(64,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(69,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(87,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\n"},{"item":"es6-promisify","response":"success"},{"item":"es6-set-proptypes","response":"success"},{"item":"es6-shim","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'statements' of undefined\n"},{"item":"es6-weak-map","response":"success"},{"item":"esc-pos-encoder","response":"success"},{"item":"escape-html","response":"success"},{"item":"escape-latex","response":"success"},{"item":"escape-regexp","response":"success"},{"item":"escodegen","response":"success"},{"item":"escpos","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint-plugin-prettier","response":"success"},{"item":"eslint-scope","response":"success"},{"item":"eslint-visitor-keys","response":"success"},{"item":"esm","response":"success"},{"item":"esprima","response":"success"},{"item":"esprima-walk","response":"success"},{"item":"espruino","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'global' must be of type 'any', but here has type 'Global'.\n"},{"item":"esquery","response":"success"},{"item":"esrever","response":"success"},{"item":"esri-leaflet","response":"success"},{"item":"esri-leaflet-geocoder","response":"success"},{"item":"estimate","response":"success"},{"item":"estraverse","response":"success"},{"item":"estree","response":"success"},{"item":"estree-jsx","response":"success"},{"item":"etag","response":"success"},{"item":"eth-lightwallet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eth-sig-util","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ethereum-protocol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"ethereumjs-abi","response":"success"},{"item":"ethjs-signer","response":"success"},{"item":"eureka-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"evaporate","response":"success"},{"item":"event-emitter","response":"success"},{"item":"event-emitter-es6","response":"success"},{"item":"event-hooks-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"event-kit","response":"success"},{"item":"event-loop-lag","response":"success"},{"item":"event-stream","response":"success"},{"item":"event-to-promise","response":"success"},{"item":"events","response":"success"},{"item":"events.once","response":"success"},{"item":"eventsource","response":"success"},{"item":"evernote","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"excel-style-dataformatter","response":"success"},{"item":"exenv","response":"success"},{"item":"exif","response":"success"},{"item":"exit","response":"success"},{"item":"exorcist","response":"success"},{"item":"expand-tilde","response":"success"},{"item":"expect-puppeteer","response":"success"},{"item":"expect.js","response":"success"},{"item":"expectations","response":"success"},{"item":"expired","response":"success"},{"item":"expired-storage","response":"success"},{"item":"expirymanager","response":"success"},{"item":"expo-mixpanel-analytics","response":"success"},{"item":"expo__status-bar-height","response":"success"},{"item":"expo__vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"express","response":"success"},{"item":"express-actuator","response":"success"},{"item":"express-async-wrap","response":"success"},{"item":"express-boom","response":"success"},{"item":"express-brute","response":"success"},{"item":"express-brute-memcached","response":"success"},{"item":"express-brute-mongo","response":"success"},{"item":"express-brute-redis","response":"success"},{"item":"express-bunyan-logger","response":"success"},{"item":"express-busboy","response":"success"},{"item":"express-cluster","response":"success"},{"item":"express-correlation-id","response":"success"},{"item":"express-debug","response":"success"},{"item":"express-domain-middleware","response":"success"},{"item":"express-ejs-layouts","response":"success"},{"item":"express-enforces-ssl","response":"success"},{"item":"express-fileupload","response":"success"},{"item":"express-flash","response":"success"},{"item":"express-flash-2","response":"success"},{"item":"express-flash-notification","response":"success"},{"item":"express-form-data","response":"success"},{"item":"express-formidable","response":"success"},{"item":"express-handlebars","response":"success"},{"item":"express-http-proxy","response":"success"},{"item":"express-jsonschema","response":"success"},{"item":"express-jwt","response":"success"},{"item":"express-less","response":"success"},{"item":"express-list-endpoints","response":"success"},{"item":"express-minify","response":"success"},{"item":"express-mongo-sanitize","response":"success"},{"item":"express-mung","response":"success"},{"item":"express-myconnection","response":"success"},{"item":"express-mysql-session","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-pino-logger","response":"success"},{"item":"express-rate-limit","response":"success"},{"item":"express-redis-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"express-request-id","response":"success"},{"item":"express-route-fs","response":"success"},{"item":"express-routemap","response":"success"},{"item":"express-routes-versioning","response":"success"},{"item":"express-sanitized","response":"success"},{"item":"express-serve-static-core","response":"success"},{"item":"express-session","response":"success"},{"item":"express-sitemap-xml","response":"success"},{"item":"express-slow-down","response":"success"},{"item":"express-socket.io-session","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/express-socket.io-session/index.d.ts(12,27): error TS2694: Namespace 'global.Express' has no exported member 'Session'.\n"},{"item":"express-sslify","response":"success"},{"item":"express-status-monitor","response":"success"},{"item":"express-to-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-unless","response":"success"},{"item":"express-urlrewrite","response":"success"},{"item":"express-useragent","response":"success"},{"item":"express-version-request","response":"success"},{"item":"express-version-route","response":"success"},{"item":"express-wechat-access","response":"success"},{"item":"express-ws","response":"success"},{"item":"express-ws-routes","response":"success"},{"item":"express-xml-bodyparser","response":"success"},{"item":"extend","response":"success"},{"item":"extjs","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"extra-watch-webpack-plugin","response":"success"},{"item":"extract-files","response":"success"},{"item":"extract-text-webpack-plugin","response":"success"},{"item":"extract-zip","response":"success"},{"item":"extsprintf","response":"success"},{"item":"eyes","response":"success"},{"item":"ez-plus","response":"success"},{"item":"f1","response":"success"},{"item":"fabric","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"facebook-instant-games","response":"success"},{"item":"facebook-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"facebook-locales","response":"success"},{"item":"facebook-pixel","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"facepaint","response":"success"},{"item":"factory-girl","response":"success"},{"item":"faker","response":"success"},{"item":"falafel","response":"success"},{"item":"falcor","response":"success"},{"item":"falcor-express","response":"success"},{"item":"falcor-http-datasource","response":"success"},{"item":"falcor-json-graph","response":"success"},{"item":"falcor-router","response":"success"},{"item":"famous","response":"success"},{"item":"fancy-log","response":"success"},{"item":"fancybox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"farbtastic","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"fast-chunk-string","response":"success"},{"item":"fast-html-parser","response":"success"},{"item":"fast-json-stable-stringify","response":"success"},{"item":"fast-levenshtein","response":"success"},{"item":"fast-list","response":"success"},{"item":"fast-memory-cache","response":"success"},{"item":"fast-ratelimit","response":"success"},{"item":"fast-shuffle","response":"success"},{"item":"fast-stats","response":"success"},{"item":"fast-text-encoding","response":"success"},{"item":"fast64","response":"success"},{"item":"fastbitset","response":"success"},{"item":"fastclick","response":"success"},{"item":"fastify-accepts","response":"success"},{"item":"fastify-favicon","response":"success"},{"item":"fastify-rate-limit","response":"success"},{"item":"favico.js","response":"success"},{"item":"favicons","response":"success"},{"item":"favicons-webpack-plugin","response":"success"},{"item":"fb-watchman","response":"success"},{"item":"fbemitter","response":"success"},{"item":"feather-icons","response":"success"},{"item":"feather-route-matcher","response":"success"},{"item":"featherlight","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__authentication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-client","response":"success"},{"item":"feathersjs__authentication-jwt","response":"success"},{"item":"feathersjs__authentication-local","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-oauth1","response":"success"},{"item":"feathersjs__authentication-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__configuration","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__errors","response":"success"},{"item":"feathersjs__express","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__feathers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n"},{"item":"feathersjs__primus","response":"success"},{"item":"feathersjs__primus-client","response":"success"},{"item":"feathersjs__rest-client","response":"success"},{"item":"feathersjs__socket-commons","response":"success"},{"item":"feathersjs__socketio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"feathersjs__socketio-client","response":"success"},{"item":"feedme","response":"success"},{"item":"feedparser","response":"success"},{"item":"fetch-jsonp","response":"success"},{"item":"fetch-mock","response":"success"},{"item":"fetch.io","response":"success"},{"item":"ffi","response":"success"},{"item":"ffi-napi","response":"success"},{"item":"ffmpeg","response":"success"},{"item":"ffmpeg-static","response":"success"},{"item":"ffmpeg.js","response":"success"},{"item":"ffprobe-static","response":"success"},{"item":"fhir","response":"success"},{"item":"fhir-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fhir-kit-client","response":"success"},{"item":"fibers","response":"success"},{"item":"fibjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/fibjs\n../DefinitelyTyped/types/fibjs/declare/assert.d.ts(789,11): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/fibjs/declare/console.d.ts(912,11): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/fibjs/declare/constants.d.ts(212,11): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(383,16): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(601,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(217,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(289,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dns.d.ts(234,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(238,16): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(672,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(214,16): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(314,16): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(508,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(76,8): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(78,8): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(81,8): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(83,8): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(85,8): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(87,8): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(88,8): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(247,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(391,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(222,16): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(476,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/path.d.ts(370,11): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/fibjs/declare/process.d.ts(556,11): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/fibjs/declare/punycode.d.ts(256,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/querystring.d.ts(262,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(215,16): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/timers.d.ts(330,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/tty.d.ts(223,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/url.d.ts(236,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/util.d.ts(983,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/vm.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/zlib.d.ts(520,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/node/assert.d.ts(52,14): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/node/console.d.ts(2,14): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/node/constants.d.ts(7,14): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/node/crypto.d.ts(204,11): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/node/dgram.d.ts(37,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/fs.d.ts(1670,15): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/node/globals.d.ts(143,13): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/node/globals.d.ts(147,13): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/node/globals.d.ts(148,13): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(181,15): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/node/http.d.ts(136,15): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(137,11): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(381,11): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/node/net.d.ts(56,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/os.d.ts(214,11): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/node/path.d.ts(152,14): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/node/process.d.ts(14,14): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/node/string_decoder.d.ts(2,11): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/node/ts3.2/globals.d.ts(10,11): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n"},{"item":"field","response":"success"},{"item":"figlet","response":"success"},{"item":"figma","response":"success"},{"item":"file-entry-cache","response":"success"},{"item":"file-exists","response":"success"},{"item":"file-loader","response":"success"},{"item":"file-saver","response":"success"},{"item":"file-size","response":"success"},{"item":"filesize-parser","response":"success"},{"item":"filesystem","response":"success"},{"item":"filewriter","response":"success"},{"item":"filing-cabinet","response":"success"},{"item":"fill-pdf","response":"success"},{"item":"filter-invalid-dom-props","response":"success"},{"item":"final-form-focus","response":"success"},{"item":"final-form-set-field-data","response":"success"},{"item":"final-form-set-field-touched","response":"success"},{"item":"finalhandler","response":"success"},{"item":"finch","response":"success"},{"item":"find","response":"success"},{"item":"find-cache-dir","response":"success"},{"item":"find-config","response":"success"},{"item":"find-down","response":"success"},{"item":"find-exec","response":"success"},{"item":"find-package-json","response":"success"},{"item":"find-parent-dir","response":"success"},{"item":"find-project-root","response":"success"},{"item":"find-root","response":"success"},{"item":"find-unused-sass-variables","response":"success"},{"item":"findup-sync","response":"success"},{"item":"fined","response":"success"},{"item":"fingerprintjs","response":"success"},{"item":"fingerprintjs2","response":"success"},{"item":"firebase-client","response":"success"},{"item":"firebase-token-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"firebird","response":"success"},{"item":"firefox","response":"success"},{"item":"firefox-webext-browser","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"firmata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"first-mate","response":"success"},{"item":"fixed-data-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"fixed-data-table-2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"flagged-respawn","response":"success"},{"item":"flake-idgen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flat","response":"success"},{"item":"flat-cache","response":"success"},{"item":"flatbuffers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"flatbush","response":"success"},{"item":"fleximap","response":"success"},{"item":"flexmonster","response":"success"},{"item":"flexslider","response":"success"},{"item":"flickity","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flight","response":"success"},{"item":"flightplan","response":"success"},{"item":"flipsnap","response":"success"},{"item":"float-equal","response":"success"},{"item":"float-regex","response":"success"},{"item":"flot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"flowdoc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\nnode_modules/typescript/lib/lib.dom.d.ts(4585,40): error TS2344: Type 'HTMLAnchorElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4658,39): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4703,38): error TS2344: Type 'HTMLAnchorElement | HTMLAreaElement' does not satisfy the constraint 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4725,40): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4737,40): error TS2344: Type 'HTMLScriptElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4961,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4962,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(5331,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(5332,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(6221,11): error TS2430: Interface 'HTMLAnchorElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6475,11): error TS2430: Interface 'HTMLButtonElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6767,11): error TS2430: Interface 'HTMLEmbedElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6801,11): error TS2430: Interface 'HTMLFieldSetElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7304,11): error TS2430: Interface 'HTMLInputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7508,11): error TS2430: Interface 'HTMLLIElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7568,11): error TS2430: Interface 'HTMLLinkElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7981,11): error TS2430: Interface 'HTMLOListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8002,11): error TS2430: Interface 'HTMLObjectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8216,11): error TS2430: Interface 'HTMLOutputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8260,11): error TS2430: Interface 'HTMLParamElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8365,11): error TS2430: Interface 'HTMLScriptElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8414,11): error TS2430: Interface 'HTMLSelectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8529,11): error TS2430: Interface 'HTMLSourceElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8569,11): error TS2430: Interface 'HTMLStyleElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8950,11): error TS2430: Interface 'HTMLTextAreaElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(9120,11): error TS2430: Interface 'HTMLUListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11589,87): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Node'.\n Type 'HTMLAnchorElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11590,86): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Node'.\n Type 'SVGScriptElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(13142,11): error TS2430: Interface 'SVGComponentTransferFunctionElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13323,11): error TS2430: Interface 'SVGFEColorMatrixElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13741,11): error TS2430: Interface 'SVGFETurbulenceElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(14639,11): error TS2430: Interface 'SVGScriptElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(14686,11): error TS2430: Interface 'SVGStyleElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\n"},{"item":"flowjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"fluent","response":"success"},{"item":"fluent-ffmpeg","response":"success"},{"item":"fluent-langneg","response":"success"},{"item":"fluent-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__bundle","response":"success"},{"item":"fluent__dedent","response":"success"},{"item":"fluent__langneg","response":"success"},{"item":"fluent__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__sequence","response":"success"},{"item":"flush-write-stream","response":"success"},{"item":"flushable","response":"success"},{"item":"flux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fluxible","response":"success"},{"item":"fluxible-addons-react","response":"success"},{"item":"fluxible-router","response":"success"},{"item":"fluxxor","response":"success"},{"item":"fm-websync","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fnando__sparkline","response":"success"},{"item":"fnv-lite","response":"success"},{"item":"focus-within","response":"success"},{"item":"follow-redirects","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"fontfaceobserver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"fontkit","response":"success"},{"item":"fontoxml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"force-graph","response":"success"},{"item":"forever-agent","response":"success"},{"item":"forever-monitor","response":"success"},{"item":"forge-apis","response":"success"},{"item":"forge-viewer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"form-serialize","response":"success"},{"item":"form-serializer","response":"success"},{"item":"form-urlencoded","response":"success"},{"item":"format-duration","response":"success"},{"item":"format-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"format-link-header","response":"success"},{"item":"format-unicorn","response":"success"},{"item":"format-util","response":"success"},{"item":"formidable","response":"success"},{"item":"formol","response":"success"},{"item":"forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"forwarded","response":"success"},{"item":"fossil-delta","response":"success"},{"item":"foundation","response":"success"},{"item":"fpsmeter","response":"success"},{"item":"framebus","response":"success"},{"item":"franc","response":"success"},{"item":"frappe-gantt","response":"success"},{"item":"frctl__fractal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n"},{"item":"frecency","response":"success"},{"item":"freedom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"freeport","response":"success"},{"item":"fresh","response":"success"},{"item":"freshy","response":"success"},{"item":"frida-gum","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/frida-gum/index.d.ts(2179,15): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5621,11): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5626,13): error TS2300: Duplicate identifier 'File'.\n"},{"item":"friendly-errors-webpack-plugin","response":"success"},{"item":"frisby","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"from","response":"success"},{"item":"from2","response":"success"},{"item":"fromjs","response":"success"},{"item":"fs-capacitor","response":"success"},{"item":"fs-cson","response":"success"},{"item":"fs-ext","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise-es6","response":"success"},{"item":"fs-finder","response":"success"},{"item":"fs-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fs-plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-readdir-recursive","response":"success"},{"item":"fs-readfile-promise","response":"success"},{"item":"fscreen","response":"success"},{"item":"ftdomdelegate","response":"success"},{"item":"ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ftpd","response":"success"},{"item":"ftps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fullcalendar__vue","response":"success"},{"item":"fullname","response":"success"},{"item":"fullpage.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"function-bind","response":"success"},{"item":"fundamental-react","response":"success"},{"item":"fusioncharts","response":"success"},{"item":"fuzzaldrin","response":"success"},{"item":"fuzzaldrin-plus","response":"success"},{"item":"fuzzy-search","response":"success"},{"item":"fuzzyset","response":"success"},{"item":"fuzzyset.js","response":"success"},{"item":"fxjs","response":"success"},{"item":"fxn","response":"success"},{"item":"gae.channel.api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gamedig","response":"success"},{"item":"gamepad","response":"success"},{"item":"gamequery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"gandi-livedns","response":"success"},{"item":"gapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.auth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.acceleratedmobilepageurl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangeseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexperiencereport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.admin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsense","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsensehost","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analyticsreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androiddeviceprovisioning","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidenterprise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidpublisher","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appengine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appsactivity","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appstate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquerydatatransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.blogger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.books","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.civicinfo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.classroom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbilling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbuild","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouddebugger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouderrorreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudfunctions","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudiot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudkms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudmonitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudresourcemanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtrace","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouduseraccounts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.compute","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.consumersurveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.container","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.content","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.customsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataproc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.deploymentmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dfareporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.discovery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dlp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclickbidmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclicksearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebasedynamiclinks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaseremoteconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaserules","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firestore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fitness","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fusiontables","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.games","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesconfiguration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.genomics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gmail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupsmigration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupssettings","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.iam","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.identitytoolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.kgsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.language","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.licensing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.logging","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.manufacturers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.mirror","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.ml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.monitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oauth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oslogin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.partners","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.photoslibrary","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playcustomapp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playmoviespartner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plusdomains","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.prediction","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.proximitybeacon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pubsub","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.qpxexpress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.reseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.resourceviews","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.runtimeconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.safebrowsing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.script","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.searchconsole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicecontrol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicemanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.serviceuser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sheets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.siteverification","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.slides","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sourcerepo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spectrum","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.speech","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sqladmin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storagetransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.streetviewpublish","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.surveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tagmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.taskqueue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.toolresults","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vault","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.videointelligence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vision","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webfonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webmasters","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubereporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gaussian","response":"success"},{"item":"gaze","response":"success"},{"item":"gc-stats","response":"success"},{"item":"gdal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"geetest","response":"success"},{"item":"gematriya","response":"success"},{"item":"gen-readlines","response":"success"},{"item":"generate-changelog","response":"success"},{"item":"generate-json-webpack-plugin","response":"success"},{"item":"generic-functions","response":"success"},{"item":"generic-pool","response":"success"},{"item":"gently","response":"success"},{"item":"geobuf","response":"success"},{"item":"geodesy","response":"success"},{"item":"geoflatbush","response":"success"},{"item":"geoip-lite","response":"success"},{"item":"geojson","response":"success"},{"item":"geojson2osm","response":"success"},{"item":"geokdbush","response":"success"},{"item":"geolite2","response":"success"},{"item":"geometry-dom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/geometry-dom/index.d.ts(236,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPointReadOnly' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPointReadOnly; prototype: DOMPointReadOnly; fromPoint(other?: DOMPointInit): DOMPointReadOnly; }', but here has type '{ new (x: number, y: number, z: number, w: number): DOMPointReadOnly; prototype: DOMPointReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(241,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPoint' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; fromPoint(other?: DOMPointInit): DOMPoint; }', but here has type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(250,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(254,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(265,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRect' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRect; prototype: DOMRect; fromRect(other?: DOMRectInit): DOMRect; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRect; prototype: DOMRect; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(270,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRectReadOnly' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly; prototype: DOMRectReadOnly; fromRect(other?: DOMRectInit): DOMRectReadOnly; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRectReadOnly; prototype: DOMRectReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(279,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(283,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(287,5): error TS2687: All declarations of 'width' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(291,5): error TS2687: All declarations of 'height' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(299,5): error TS2687: All declarations of 'length' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(307,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMQuad' must be of type '{ new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; fromQuad(other?: DOMQuadInit): DOMQuad; fromRect(other?: DOMRectInit): DOMQuad; }', but here has type '{ new (rect?: DOMRectInit): DOMQuad; new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(313,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrixReadOnly' must be of type '{ new (init?: string | number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly; fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly; fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly; toString(): string; }', but here has type '{ new (numberSequence: number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(318,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrix' must be of type '{ new (init?: string | number[]): DOMMatrix; prototype: DOMMatrix; fromFloat32Array(array32: Float32Array): DOMMatrix; fromFloat64Array(array64: Float64Array): DOMMatrix; fromMatrix(other?: DOMMatrixInit): DOMMatrix; }', but here has type '{ new (): DOMMatrix; new (transformList: string): DOMMatrix; new (other: DOMMatrixReadOnly): DOMMatrix; new (array: number[]): DOMMatrix; new (a: number, b: number, c: number, d: number, e: number, f: number): DOMMatrix; prototype: DOMMatrix; }'.\nnode_modules/typescript/lib/lib.dom.d.ts(348,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(349,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(361,5): error TS2687: All declarations of 'height' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(362,5): error TS2687: All declarations of 'width' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(363,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(364,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(4179,14): error TS2687: All declarations of 'length' must have identical modifiers.\n"},{"item":"geopattern","response":"success"},{"item":"geopoint","response":"success"},{"item":"gestalt","response":"success"},{"item":"get-caller-file","response":"success"},{"item":"get-certain","response":"success"},{"item":"get-emoji","response":"success"},{"item":"get-folder-size","response":"success"},{"item":"get-func-name","response":"success"},{"item":"get-node-dimensions","response":"success"},{"item":"get-res","response":"success"},{"item":"get-value","response":"success"},{"item":"getenv","response":"success"},{"item":"getos","response":"success"},{"item":"getpass","response":"success"},{"item":"gettext-parser","response":"success"},{"item":"gettext.js","response":"success"},{"item":"gfc","response":"success"},{"item":"gh-pages","response":"success"},{"item":"ghauth","response":"success"},{"item":"ghost-storage-base","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"gifffer","response":"success"},{"item":"gijgo","response":"success"},{"item":"giphy-api","response":"success"},{"item":"giraffe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"git","response":"success"},{"item":"git-add-remote","response":"success"},{"item":"git-branch","response":"success"},{"item":"git-branch-is","response":"success"},{"item":"git-config","response":"success"},{"item":"git-config-path","response":"success"},{"item":"git-raw-commits","response":"success"},{"item":"git-repo-name","response":"success"},{"item":"git-rev","response":"success"},{"item":"git-rev-sync","response":"success"},{"item":"git-revision-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"git-root-dir","response":"success"},{"item":"git-semver-tags","response":"success"},{"item":"git-url-parse","response":"success"},{"item":"git-user-email","response":"success"},{"item":"git-user-name","response":"success"},{"item":"git-username","response":"success"},{"item":"gitconfiglocal","response":"success"},{"item":"github-url-from-git","response":"success"},{"item":"github-url-to-object","response":"success"},{"item":"github-username-regex","response":"success"},{"item":"gl","response":"success"},{"item":"gl-fbo","response":"success"},{"item":"gl-matrix","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"gl-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of Parameter - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gl-react-dom","response":"success"},{"item":"gl-react-expo","response":"success"},{"item":"gl-react-headless","response":"success"},{"item":"gl-react-native","response":"success"},{"item":"gl-shader","response":"success"},{"item":"gl-texture2d","response":"success"},{"item":"gl-vec2","response":"success"},{"item":"gl-vec3","response":"success"},{"item":"gl-vec4","response":"success"},{"item":"gldatepicker","response":"success"},{"item":"glidejs","response":"success"},{"item":"glob","response":"success"},{"item":"glob-base","response":"success"},{"item":"glob-expand","response":"success"},{"item":"glob-parent","response":"success"},{"item":"glob-stream","response":"success"},{"item":"glob-to-regexp","response":"success"},{"item":"glob-watcher","response":"success"},{"item":"global-agent","response":"success"},{"item":"global-modules","response":"success"},{"item":"global-modules-path","response":"success"},{"item":"global-npm","response":"success"},{"item":"global-paths","response":"success"},{"item":"global-prefix","response":"success"},{"item":"global-tunnel-ng","response":"success"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize-compiler","response":"success"},{"item":"globalthis","response":"success"},{"item":"globjoin","response":"success"},{"item":"globule","response":"success"},{"item":"glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"gm","response":"success"},{"item":"go","response":"success"},{"item":"good-storage","response":"success"},{"item":"google-adwords-scripts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"google-apps-script","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/google-apps-script\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-apps-script-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-closure-compiler","response":"success"},{"item":"google-cloud__datastore","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-cloud__kms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-cloud__tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"google-cloud__text-to-speech","response":"success"},{"item":"google-ddns","response":"success"},{"item":"google-drive-realtime-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-earth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-fonts","response":"success"},{"item":"google-images","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-libphonenumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-map-react","response":"success"},{"item":"google-maps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-maps-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-protobuf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-translate-api","response":"success"},{"item":"google.analytics","response":"success"},{"item":"google.feeds","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.fonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.geolocation","response":"success"},{"item":"google.picker","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.script.client-side","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.visualization","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google__maps","response":"success"},{"item":"google__markerclustererplus","response":"success"},{"item":"googlemaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlemaps.infobubble","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlepay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"got","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"graceful-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gradient-string","response":"success"},{"item":"graham_scan","response":"success"},{"item":"gramps__rest-helpers","response":"success"},{"item":"graphite","response":"success"},{"item":"graphite-udp","response":"success"},{"item":"graphlib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"graphlib-dot","response":"success"},{"item":"graphql-api-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphql-bigint","response":"success"},{"item":"graphql-date","response":"success"},{"item":"graphql-deduplicator","response":"success"},{"item":"graphql-depth-limit","response":"success"},{"item":"graphql-errors","response":"success"},{"item":"graphql-fields","response":"success"},{"item":"graphql-iso-date","response":"success"},{"item":"graphql-list-fields","response":"success"},{"item":"graphql-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"graphql-relay","response":"success"},{"item":"graphql-resolve-batch","response":"success"},{"item":"graphql-resolvers","response":"success"},{"item":"graphql-type-json","response":"success"},{"item":"graphql-type-uuid","response":"success"},{"item":"graphql-upload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphviz","response":"success"},{"item":"grasp","response":"success"},{"item":"gravatar","response":"success"},{"item":"gray-percentage","response":"success"},{"item":"graylog2","response":"success"},{"item":"greasemonkey","response":"success"},{"item":"grecaptcha","response":"success"},{"item":"gregorian-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"gremlin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"grid-template-parser","response":"success"},{"item":"gridfs-stream","response":"success"},{"item":"group-array","response":"success"},{"item":"growing-io","response":"success"},{"item":"grpc-error","response":"success"},{"item":"grunt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"gsap","response":"success"},{"item":"gtag.js","response":"success"},{"item":"gtin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"guardian__prosemirror-invisibles","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"guid","response":"success"},{"item":"gulp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"gulp-angular-templatecache","response":"success"},{"item":"gulp-autoprefixer","response":"success"},{"item":"gulp-babel","response":"success"},{"item":"gulp-batch","response":"success"},{"item":"gulp-bump","response":"success"},{"item":"gulp-cache","response":"success"},{"item":"gulp-cached","response":"success"},{"item":"gulp-change","response":"success"},{"item":"gulp-changed","response":"success"},{"item":"gulp-cheerio","response":"success"},{"item":"gulp-clean-dest","response":"success"},{"item":"gulp-coffeeify","response":"success"},{"item":"gulp-coffeelint","response":"success"},{"item":"gulp-concat","response":"success"},{"item":"gulp-connect","response":"success"},{"item":"gulp-copy","response":"success"},{"item":"gulp-csso","response":"success"},{"item":"gulp-debug","response":"success"},{"item":"gulp-diff","response":"success"},{"item":"gulp-dtsm","response":"success"},{"item":"gulp-espower","response":"success"},{"item":"gulp-file-include","response":"success"},{"item":"gulp-filter","response":"success"},{"item":"gulp-flatten","response":"success"},{"item":"gulp-gh-pages","response":"success"},{"item":"gulp-gzip","response":"success"},{"item":"gulp-header","response":"success"},{"item":"gulp-help","response":"success"},{"item":"gulp-help-doc","response":"success"},{"item":"gulp-html-prettify","response":"success"},{"item":"gulp-html-replace","response":"success"},{"item":"gulp-htmlmin","response":"success"},{"item":"gulp-if","response":"success"},{"item":"gulp-image","response":"success"},{"item":"gulp-image-resize","response":"success"},{"item":"gulp-imagemin","response":"success"},{"item":"gulp-inject","response":"success"},{"item":"gulp-insert","response":"success"},{"item":"gulp-install","response":"success"},{"item":"gulp-intercept","response":"success"},{"item":"gulp-istanbul","response":"success"},{"item":"gulp-jade","response":"success"},{"item":"gulp-jasmine","response":"success"},{"item":"gulp-jasmine-browser","response":"success"},{"item":"gulp-json-editor","response":"success"},{"item":"gulp-json-validator","response":"success"},{"item":"gulp-jsonmin","response":"success"},{"item":"gulp-jsonminify","response":"success"},{"item":"gulp-jspm","response":"success"},{"item":"gulp-less","response":"success"},{"item":"gulp-load-plugins","response":"success"},{"item":"gulp-minify-css","response":"success"},{"item":"gulp-minify-html","response":"success"},{"item":"gulp-mocha","response":"success"},{"item":"gulp-modernizr","response":"success"},{"item":"gulp-msbuild","response":"success"},{"item":"gulp-mustache","response":"success"},{"item":"gulp-newer","response":"success"},{"item":"gulp-ng-annotate","response":"success"},{"item":"gulp-nodemon","response":"success"},{"item":"gulp-nunit-runner","response":"success"},{"item":"gulp-plumber","response":"success"},{"item":"gulp-postcss","response":"success"},{"item":"gulp-protractor","response":"success"},{"item":"gulp-pug-i18n","response":"success"},{"item":"gulp-remember","response":"success"},{"item":"gulp-rename","response":"success"},{"item":"gulp-replace","response":"success"},{"item":"gulp-responsive-images","response":"success"},{"item":"gulp-rev","response":"success"},{"item":"gulp-rev-replace","response":"success"},{"item":"gulp-ruby-sass","response":"success"},{"item":"gulp-sass","response":"success"},{"item":"gulp-sass-variables","response":"success"},{"item":"gulp-sequence","response":"success"},{"item":"gulp-size","response":"success"},{"item":"gulp-sort","response":"success"},{"item":"gulp-sourcemaps","response":"success"},{"item":"gulp-strip-comments","response":"success"},{"item":"gulp-strip-debug","response":"success"},{"item":"gulp-stylus","response":"success"},{"item":"gulp-svg-sprite","response":"success"},{"item":"gulp-svgmin","response":"success"},{"item":"gulp-tap","response":"success"},{"item":"gulp-task-listing","response":"success"},{"item":"gulp-template","response":"success"},{"item":"gulp-terser","response":"success"},{"item":"gulp-tsd","response":"success"},{"item":"gulp-uglify","response":"success"},{"item":"gulp-useref","response":"success"},{"item":"gulp-util","response":"success"},{"item":"gulp-watch","response":"success"},{"item":"gulp-zip","response":"success"},{"item":"gun","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"gyronorm","response":"success"},{"item":"gzip-js","response":"success"},{"item":"h2o2","response":"success"},{"item":"halfred","response":"success"},{"item":"halogen","response":"success"},{"item":"halogenium","response":"success"},{"item":"hammerjs","response":"success"},{"item":"handlebars-helpers","response":"success"},{"item":"hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi-auth-basic","response":"success"},{"item":"hapi-auth-bearer-token","response":"success"},{"item":"hapi-auth-cookie","response":"success"},{"item":"hapi-decorators","response":"success"},{"item":"hapi-pino","response":"success"},{"item":"hapi-server-session","response":"success"},{"item":"hapi__b64","response":"success"},{"item":"hapi__basic","response":"success"},{"item":"hapi__bell","response":"success"},{"item":"hapi__catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__catbox-memcached","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"hapi__catbox-memory","response":"success"},{"item":"hapi__catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"hapi__cookie","response":"success"},{"item":"hapi__crumb","response":"success"},{"item":"hapi__glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__h2o2","response":"success"},{"item":"hapi__hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__hawk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__inert","response":"success"},{"item":"hapi__joi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"hapi__mimos","response":"success"},{"item":"hapi__nes","response":"success"},{"item":"hapi__podium","response":"success"},{"item":"hapi__shot","response":"success"},{"item":"hapi__sntp","response":"success"},{"item":"hapi__vision","response":"success"},{"item":"hapi__yar","response":"success"},{"item":"happypack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"har-format","response":"success"},{"item":"hard-source-webpack-plugin","response":"success"},{"item":"hark","response":"success"},{"item":"harmon","response":"success"},{"item":"harmony-proxy","response":"success"},{"item":"has-ansi","response":"success"},{"item":"hash-file","response":"success"},{"item":"hash-it","response":"success"},{"item":"hash-stream","response":"success"},{"item":"hash-sum","response":"success"},{"item":"hasher","response":"success"},{"item":"hashids","response":"success"},{"item":"hashmap","response":"success"},{"item":"hashring","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"hashset","response":"success"},{"item":"hashtable","response":"success"},{"item":"hashtag-regex","response":"success"},{"item":"hast","response":"success"},{"item":"hat","response":"success"},{"item":"haversine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hdkey","response":"success"},{"item":"he","response":"success"},{"item":"headroom","response":"success"},{"item":"heap","response":"success"},{"item":"heapdump","response":"success"},{"item":"heatmap.js","response":"success"},{"item":"hedron","response":"success"},{"item":"hellojs","response":"success"},{"item":"hellosign-embedded","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"helmet","response":"success"},{"item":"heredatalens","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heremaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heroku-logger","response":"success"},{"item":"hex-rgba","response":"success"},{"item":"hexo","response":"success"},{"item":"hexo-bunyan","response":"success"},{"item":"hexo-fs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"hexo-log","response":"success"},{"item":"hexo-util","response":"success"},{"item":"hh-mm-ss","response":"success"},{"item":"hig__button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"highcharts-ng","response":"success"},{"item":"highland","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"highlight-words-core","response":"success"},{"item":"highlight.js","response":"success"},{"item":"highlightjs","response":"success"},{"item":"hiredis","response":"success"},{"item":"hirestime","response":"success"},{"item":"history","response":"success"},{"item":"history.js","response":"success"},{"item":"historykana","response":"success"},{"item":"hjson","response":"success"},{"item":"hls-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hls.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"hoek","response":"success"},{"item":"hogan.js","response":"success"},{"item":"hoist-non-react-statics","response":"success"},{"item":"holderjs","response":"success"},{"item":"honeybadger","response":"success"},{"item":"hooker","response":"success"},{"item":"hookrouter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hopscotch","response":"success"},{"item":"host-validation","response":"success"},{"item":"hosted-git-info","response":"success"},{"item":"hostile","response":"success"},{"item":"howler","response":"success"},{"item":"hoxy","response":"success"},{"item":"hpp","response":"success"},{"item":"html-entities","response":"success"},{"item":"html-minifier","response":"success"},{"item":"html-minifier-terser","response":"success"},{"item":"html-parser","response":"success"},{"item":"html-pdf","response":"success"},{"item":"html-tag-names","response":"success"},{"item":"html-to-draftjs","response":"success"},{"item":"html-to-text","response":"success"},{"item":"html-truncate","response":"success"},{"item":"html-validator","response":"success"},{"item":"html-void-elements","response":"success"},{"item":"html-webpack-plugin","response":"success"},{"item":"html-webpack-template","response":"success"},{"item":"html2canvas","response":"success"},{"item":"html5-history","response":"success"},{"item":"html5-to-pdf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"html5plus","response":"success"},{"item":"htmlbars-inline-precompile","response":"success"},{"item":"htmlescape","response":"success"},{"item":"htmlhint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"htmlparser2","response":"success"},{"item":"htmltojsx","response":"success"},{"item":"http-assert","response":"success"},{"item":"http-aws-es","response":"success"},{"item":"http-build-query","response":"success"},{"item":"http-cache-semantics","response":"success"},{"item":"http-codes","response":"success"},{"item":"http-context","response":"success"},{"item":"http-errors","response":"success"},{"item":"http-link-header","response":"success"},{"item":"http-proxy","response":"success"},{"item":"http-proxy-agent","response":"success"},{"item":"http-proxy-middleware","response":"success"},{"item":"http-rx","response":"success"},{"item":"http-server","response":"success"},{"item":"http-string-parser","response":"success"},{"item":"httperr","response":"success"},{"item":"hubot","response":"success"},{"item":"hubspot-pace","response":"success"},{"item":"human-date","response":"success"},{"item":"human-interval","response":"success"},{"item":"humane-js","response":"success"},{"item":"humanize-duration","response":"success"},{"item":"humanize-ms","response":"success"},{"item":"humanize-plus","response":"success"},{"item":"humanparser","response":"success"},{"item":"hummus-recipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"humps","response":"success"},{"item":"hyco-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"hyper-aws4","response":"success"},{"item":"hyperscript","response":"success"},{"item":"hypertext-application-language","response":"success"},{"item":"hystrixjs","response":"success"},{"item":"i18n","response":"success"},{"item":"i18n-abide","response":"success"},{"item":"i18n-js","response":"success"},{"item":"i18next-ko","response":"success"},{"item":"i18next-node-fs-backend","response":"success"},{"item":"i18next-sprintf-postprocessor","response":"success"},{"item":"i2c-bus","response":"success"},{"item":"iab-vpaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iarna__toml","response":"success"},{"item":"iban","response":"success"},{"item":"ibm-mobilefirst","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ibm-openapi-validator","response":"success"},{"item":"ibm_db","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ical","response":"success"},{"item":"icepick","response":"success"},{"item":"icheck","response":"success"},{"item":"icon-gen","response":"success"},{"item":"iconv","response":"success"},{"item":"icss-utils","response":"success"},{"item":"identicon.js","response":"success"},{"item":"idyll","response":"success"},{"item":"idyll-ast","response":"success"},{"item":"idyll-compiler","response":"success"},{"item":"idyll-document","response":"success"},{"item":"iferr","response":"success"},{"item":"iframe-resizer","response":"success"},{"item":"ifvisible","response":"success"},{"item":"igdb-api-node","response":"success"},{"item":"ignite-ui","response":"success"},{"item":"ignore-styles","response":"success"},{"item":"ignore-walk","response":"success"},{"item":"iltorb","response":"success"},{"item":"image-thumbnail","response":"success"},{"item":"imagemagick","response":"success"},{"item":"imagemagick-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imagemapster","response":"success"},{"item":"imagemin","response":"success"},{"item":"imagemin-gifsicle","response":"success"},{"item":"imagemin-jpegtran","response":"success"},{"item":"imagemin-mozjpeg","response":"success"},{"item":"imagemin-optipng","response":"success"},{"item":"imagemin-pngquant","response":"success"},{"item":"imagemin-svgo","response":"success"},{"item":"imagemin-webp","response":"success"},{"item":"images","response":"success"},{"item":"imagesloaded","response":"success"},{"item":"imap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"imap-simple","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imgur-rest-api","response":"success"},{"item":"immediate","response":"success"},{"item":"imperium","response":"success"},{"item":"impress","response":"success"},{"item":"imsi-grok","response":"success"},{"item":"imul","response":"success"},{"item":"imurmurhash","response":"success"},{"item":"in-app-purchase","response":"success"},{"item":"inboxsdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"incremental-dom","response":"success"},{"item":"indefinite","response":"success"},{"item":"inert","response":"success"},{"item":"ineum","response":"success"},{"item":"inflation","response":"success"},{"item":"inflected","response":"success"},{"item":"inflection","response":"success"},{"item":"infobox-parser","response":"success"},{"item":"inherits","response":"success"},{"item":"ini","response":"success"},{"item":"iniparser","response":"success"},{"item":"init-package-json","response":"success"},{"item":"ink-select-input","response":"success"},{"item":"ink-spinner","response":"success"},{"item":"ink-table","response":"success"},{"item":"ink-testing-library","response":"success"},{"item":"ink-text-input","response":"success"},{"item":"inline-critical","response":"success"},{"item":"inline-css","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"inline-style-prefixer","response":"success"},{"item":"input-moment","response":"success"},{"item":"inputmask","response":"success"},{"item":"inquirer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"inquirer-npm-name","response":"success"},{"item":"insert-css","response":"success"},{"item":"insert-module-globals","response":"success"},{"item":"insert-text-at-cursor","response":"success"},{"item":"insight","response":"success"},{"item":"inspectlet-es","response":"success"},{"item":"integer","response":"success"},{"item":"integrate-adaptive-simpson","response":"success"},{"item":"intercept-stdout","response":"success"},{"item":"intercom-client","response":"success"},{"item":"intercom-web","response":"success"},{"item":"intercomjs","response":"success"},{"item":"interface-datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"internal-slot","response":"success"},{"item":"interpret","response":"success"},{"item":"intersects","response":"success"},{"item":"intersperse","response":"success"},{"item":"intl","response":"success"},{"item":"intl-tel-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/intl-tel-input/index.d.ts(125,30): error TS2304: Cannot find name 'JQueryDeferred'.\n"},{"item":"intrinsic-scale","response":"success"},{"item":"intro.js","response":"success"},{"item":"invariant","response":"success"},{"item":"inversify-devtools","response":"success"},{"item":"iobroker","response":"success"},{"item":"ion-rangeslider","response":"success"},{"item":"iopipe__iopipe","response":"success"},{"item":"ioredis","response":"success"},{"item":"iost-contract","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/iost-contract"},{"item":"iota.lib.js","response":"success"},{"item":"ip","response":"success"},{"item":"ip-address","response":"success"},{"item":"ip-subnet-calculator","response":"success"},{"item":"ipcheck","response":"success"},{"item":"irc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iri","response":"success"},{"item":"iron","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"is","response":"success"},{"item":"is-absolute","response":"success"},{"item":"is-alphanumerical","response":"success"},{"item":"is-array","response":"success"},{"item":"is-base64","response":"success"},{"item":"is-blank","response":"success"},{"item":"is-buffer","response":"success"},{"item":"is-callable","response":"success"},{"item":"is-charging","response":"success"},{"item":"is-ci","response":"success"},{"item":"is-color","response":"success"},{"item":"is-date-object","response":"success"},{"item":"is-dotdir","response":"success"},{"item":"is-dotfile","response":"success"},{"item":"is-empty","response":"success"},{"item":"is-empty-object","response":"success"},{"item":"is-even","response":"success"},{"item":"is-finite","response":"success"},{"item":"is-function","response":"success"},{"item":"is-generator","response":"success"},{"item":"is-generator-function","response":"success"},{"item":"is-git-url","response":"success"},{"item":"is-glob","response":"success"},{"item":"is-hotkey","response":"success"},{"item":"is-integer","response":"success"},{"item":"is-my-json-valid","response":"success"},{"item":"is-natural-number","response":"success"},{"item":"is-negated-glob","response":"success"},{"item":"is-number","response":"success"},{"item":"is-number-like","response":"success"},{"item":"is-object","response":"success"},{"item":"is-odd","response":"success"},{"item":"is-progressive","response":"success"},{"item":"is-promise","response":"success"},{"item":"is-relative","response":"success"},{"item":"is-relative-path","response":"success"},{"item":"is-running","response":"success"},{"item":"is-ssh","response":"success"},{"item":"is-touch-device","response":"success"},{"item":"is-trademarked","response":"success"},{"item":"is-typedarray","response":"success"},{"item":"is-unc-path","response":"success"},{"item":"is-url","response":"success"},{"item":"is-uuid","response":"success"},{"item":"is-valid-glob","response":"success"},{"item":"is-valid-path","response":"success"},{"item":"is-windows","response":"success"},{"item":"isaac","response":"success"},{"item":"isarray","response":"success"},{"item":"isbn-utils","response":"success"},{"item":"iscroll","response":"success"},{"item":"isexe","response":"success"},{"item":"iso-3166-2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iso8601-localizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"isomorphic-fetch","response":"success"},{"item":"isomorphic-form-data","response":"success"},{"item":"isotope-layout","response":"success"},{"item":"isstream","response":"success"},{"item":"issue-parser","response":"success"},{"item":"istanbul","response":"success"},{"item":"istanbul-lib-coverage","response":"success"},{"item":"istanbul-lib-hook","response":"success"},{"item":"istanbul-lib-instrument","response":"success"},{"item":"istanbul-lib-report","response":"success"},{"item":"istanbul-lib-source-maps","response":"success"},{"item":"istanbul-middleware","response":"success"},{"item":"istanbul-reports","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"istextorbinary","response":"success"},{"item":"it-all","response":"success"},{"item":"it-pushable","response":"success"},{"item":"ityped","response":"success"},{"item":"ix.js","response":"success"},{"item":"jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"jade","response":"success"},{"item":"jaeger-client","response":"success"},{"item":"jake","response":"success"},{"item":"jalaali-js","response":"success"},{"item":"japan-postal-code","response":"success"},{"item":"japanese-holidays","response":"success"},{"item":"jasmine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'statements' of undefined\n"},{"item":"jasmine-ajax","response":"success"},{"item":"jasmine-data-provider","response":"success"},{"item":"jasmine-data_driven_tests","response":"success"},{"item":"jasmine-enzyme","response":"success"},{"item":"jasmine-es6-promise-matchers","response":"success"},{"item":"jasmine-fixture","response":"success"},{"item":"jasmine-given","response":"success"},{"item":"jasmine-jquery","response":"success"},{"item":"jasmine-matchers","response":"success"},{"item":"jasmine-node","response":"success"},{"item":"jasmine-promise-matchers","response":"success"},{"item":"jasmine_dom_matchers","response":"success"},{"item":"jasminewd2","response":"success"},{"item":"java","response":"success"},{"item":"java-applet","response":"success"},{"item":"javascript-astar","response":"success"},{"item":"javascript-bignum","response":"success"},{"item":"javascript-state-machine","response":"success"},{"item":"javascript-time-ago","response":"success"},{"item":"jbinary","response":"success"},{"item":"jcanvas","response":"success"},{"item":"jdataview","response":"success"},{"item":"jee-jsf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jenkins","response":"success"},{"item":"jest","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"jest-axe","response":"success"},{"item":"jest-cucumber-fusion","response":"success"},{"item":"jest-dev-server","response":"success"},{"item":"jest-environment-puppeteer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/environment/build/index.d.ts(11,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/jest-environment-puppeteer/node_modules/jest-mock/build/index\"' can only be default-imported using the 'esModuleInterop' flag\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/source-map/build/getCallsite.d.ts(8,100): error TS2503: Cannot find namespace 'callsites'.\n"},{"item":"jest-expect-message","response":"success"},{"item":"jest-image-snapshot","response":"success"},{"item":"jest-in-case","response":"success"},{"item":"jest-json-schema","response":"success"},{"item":"jest-matcher-one-of","response":"success"},{"item":"jest-plugin-context","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/jest-plugin-context"},{"item":"jest-plugin-set","response":"success"},{"item":"jest-sinon","response":"success"},{"item":"jest-specific-snapshot","response":"success"},{"item":"jest-when","response":"success"},{"item":"jexl","response":"success"},{"item":"jfp","response":"success"},{"item":"jfs","response":"success"},{"item":"jira-client","response":"success"},{"item":"jju","response":"success"},{"item":"jjv","response":"success"},{"item":"jjve","response":"success"},{"item":"jmespath","response":"success"},{"item":"johnny-five","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"joi","response":"success"},{"item":"joi-password-complexity","response":"success"},{"item":"joigoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"josa","response":"success"},{"item":"jotform-css.js","response":"success"},{"item":"jpeg-autorotate","response":"success"},{"item":"jpegtran-bin","response":"success"},{"item":"jpm","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jqgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jqrangeslider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-ajax-chain","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-alertable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-animate-scroll","response":"success"},{"item":"jquery-awesome-cursor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-backstretch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-countdown","response":"success"},{"item":"jquery-countto","response":"success"},{"item":"jquery-cropbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-cropper","response":"success"},{"item":"jquery-deferred","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery-deparam","response":"success"},{"item":"jquery-drawer","response":"success"},{"item":"jquery-easy-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-editable-select","response":"success"},{"item":"jquery-focus-exit","response":"success"},{"item":"jquery-focusable","response":"success"},{"item":"jquery-formatdatetime","response":"success"},{"item":"jquery-fullscreen","response":"success"},{"item":"jquery-galleria","response":"success"},{"item":"jquery-gray","response":"success"},{"item":"jquery-handsontable","response":"success"},{"item":"jquery-jcrop","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jquery-jsonrpcclient","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-knob","response":"success"},{"item":"jquery-lazyload","response":"success"},{"item":"jquery-loading-overlay","response":"success"},{"item":"jquery-mask-plugin","response":"success"},{"item":"jquery-maskmoney","response":"success"},{"item":"jquery-match-height","response":"success"},{"item":"jquery-migrate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mockjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mouse-exit","response":"success"},{"item":"jquery-mousewheel","response":"success"},{"item":"jquery-next-id","response":"success"},{"item":"jquery-param","response":"success"},{"item":"jquery-slimscroll","response":"success"},{"item":"jquery-slugify","response":"success"},{"item":"jquery-sortable","response":"success"},{"item":"jquery-steps","response":"success"},{"item":"jquery-sticky","response":"success"},{"item":"jquery-tags-input","response":"success"},{"item":"jquery-timeentry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toast-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toastmessage-plugin","response":"success"},{"item":"jquery-truncate-html","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-typeahead","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-urlparam","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-validation-unobtrusive","response":"success"},{"item":"jquery.address","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.appear","response":"success"},{"item":"jquery.are-you-sure","response":"success"},{"item":"jquery.autosize","response":"success"},{"item":"jquery.base64","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bbq","response":"success"},{"item":"jquery.blockui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bootstrap.wizard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.browser","response":"success"},{"item":"jquery.cleditor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.clientsidelogging","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorpicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.contextmenu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.cookie","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.customselect","response":"success"},{"item":"jquery.cycle","response":"success"},{"item":"jquery.cycle2","response":"success"},{"item":"jquery.dropotron","response":"success"},{"item":"jquery.dynatree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.elang","response":"success"},{"item":"jquery.fancytree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fileupload","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.filtertable","response":"success"},{"item":"jquery.finger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.flagstrap","response":"success"},{"item":"jquery.form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fullscreen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.gridster","response":"success"},{"item":"jquery.growl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"jquery.highlight-bartaz","response":"success"},{"item":"jquery.jnotify","response":"success"},{"item":"jquery.joyride","response":"success"},{"item":"jquery.jsignature","response":"success"},{"item":"jquery.leanmodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.livestampjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery.menuaim","response":"success"},{"item":"jquery.mmenu","response":"success"},{"item":"jquery.nicescroll","response":"success"},{"item":"jquery.notify","response":"success"},{"item":"jquery.notifybar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.noty","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'kind' of undefined\n"},{"item":"jquery.payment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.pin","response":"success"},{"item":"jquery.pjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.placeholder","response":"success"},{"item":"jquery.pnotify","response":"success"},{"item":"jquery.postmessage","response":"success"},{"item":"jquery.prettyphoto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.qrcode","response":"success"},{"item":"jquery.rateit","response":"success"},{"item":"jquery.rowgrid","response":"success"},{"item":"jquery.scrollto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplemodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplepagination","response":"success"},{"item":"jquery.simulate","response":"success"},{"item":"jquery.soap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.sortelements","response":"success"},{"item":"jquery.stickem","response":"success"},{"item":"jquery.superlink","response":"success"},{"item":"jquery.tagsmanager","response":"success"},{"item":"jquery.tile","response":"success"},{"item":"jquery.timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.tinycarousel","response":"success"},{"item":"jquery.tinyscrollbar","response":"success"},{"item":"jquery.tipsy","response":"success"},{"item":"jquery.tools","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.total-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.transit","response":"success"},{"item":"jquery.ui.datetimepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.ui.layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.uniform","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.validation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.watermark","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquerymobile","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jqueryui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"js-base64","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"js-beautify","response":"success"},{"item":"js-captcha","response":"success"},{"item":"js-clipper","response":"success"},{"item":"js-combinatorics","response":"success"},{"item":"js-cookie","response":"success"},{"item":"js-data-angular","response":"success"},{"item":"js-fixtures","response":"success"},{"item":"js-git","response":"success"},{"item":"js-levenshtein","response":"success"},{"item":"js-md5","response":"success"},{"item":"js-money","response":"success"},{"item":"js-nacl","response":"success"},{"item":"js-priority-queue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"js-quantities","response":"success"},{"item":"js-roman-numerals","response":"success"},{"item":"js-schema","response":"success"},{"item":"js-search","response":"success"},{"item":"js-sha512","response":"success"},{"item":"js-string-escape","response":"success"},{"item":"js-to-java","response":"success"},{"item":"js-url","response":"success"},{"item":"js-yaml","response":"success"},{"item":"js.spec","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsbn","response":"success"},{"item":"jschannel","response":"success"},{"item":"jscodeshift","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"jscrollpane","response":"success"},{"item":"jsdeferred","response":"success"},{"item":"jsdoc-to-markdown","response":"success"},{"item":"jsdom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsdom-global","response":"success"},{"item":"jsen","response":"success"},{"item":"jsend","response":"success"},{"item":"jsesc","response":"success"},{"item":"jsfl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'kind' of undefined\n"},{"item":"jsforce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsftp","response":"success"},{"item":"jsgraph","response":"success"},{"item":"jshamcrest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsmediatags","response":"success"},{"item":"jsmockito","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsnox","response":"success"},{"item":"json-buffer","response":"success"},{"item":"json-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"json-file-plus","response":"success"},{"item":"json-form-data","response":"success"},{"item":"json-js","response":"success"},{"item":"json-merge-patch","response":"success"},{"item":"json-parse-better-errors","response":"success"},{"item":"json-patch","response":"success"},{"item":"json-patch-gen","response":"success"},{"item":"json-pointer","response":"success"},{"item":"json-query","response":"success"},{"item":"json-rpc-random-id","response":"success"},{"item":"json-rpc-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"json-schema","response":"success"},{"item":"json-schema-compare","response":"success"},{"item":"json-schema-merge-allof","response":"success"},{"item":"json-schema-traverse","response":"success"},{"item":"json-server","response":"success"},{"item":"json-socket","response":"success"},{"item":"json-stable-stringify","response":"success"},{"item":"json-stream-stringify","response":"success"},{"item":"json-stringify-safe","response":"success"},{"item":"json-to-ast","response":"success"},{"item":"json2csv","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"json2md","response":"success"},{"item":"json2mq","response":"success"},{"item":"json3","response":"success"},{"item":"json5","response":"success"},{"item":"json8-patch","response":"success"},{"item":"json_ml","response":"success"},{"item":"jsonabc","response":"success"},{"item":"jsonapi-serializer","response":"success"},{"item":"jsoneditor","response":"success"},{"item":"jsoneditor-for-react","response":"success"},{"item":"jsoneditoronline","response":"success"},{"item":"jsonfile","response":"success"},{"item":"jsonic","response":"success"},{"item":"jsonld","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonminify","response":"success"},{"item":"jsonnet","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsonp","response":"success"},{"item":"jsonpack","response":"success"},{"item":"jsonpath","response":"success"},{"item":"jsonpointer","response":"success"},{"item":"jsonquery","response":"success"},{"item":"jsonrpc-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonstream","response":"success"},{"item":"jsontoxml","response":"success"},{"item":"jsonwebtoken","response":"success"},{"item":"jsonwebtoken-promisified","response":"success"},{"item":"jspath","response":"success"},{"item":"jspdf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsprintmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsqrcode","response":"success"},{"item":"jsqubits","response":"success"},{"item":"jsreport-chrome-pdf","response":"success"},{"item":"jsreport-core","response":"success"},{"item":"jsreport-html-embedded-in-docx","response":"success"},{"item":"jsreport-html-to-xlsx","response":"success"},{"item":"jsreport-jsrender","response":"success"},{"item":"jsreport-phantom-pdf","response":"success"},{"item":"jsreport-xlsx","response":"success"},{"item":"jsrp","response":"success"},{"item":"jsrsasign","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jssha","response":"success"},{"item":"jssip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsspec__jsspec","response":"success"},{"item":"jstimezonedetect","response":"success"},{"item":"jstorage","response":"success"},{"item":"jstree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsuite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsum","response":"success"},{"item":"jsuri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"jsurl","response":"success"},{"item":"jsx-chai","response":"success"},{"item":"jszip","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"jug","response":"success"},{"item":"jui","response":"success"},{"item":"jui-core","response":"success"},{"item":"jui-grid","response":"success"},{"item":"jump.js","response":"success"},{"item":"just-clone","response":"success"},{"item":"just-debounce-it","response":"success"},{"item":"just-extend","response":"success"},{"item":"just-map-values","response":"success"},{"item":"just-pick","response":"success"},{"item":"just-safe-get","response":"success"},{"item":"just-safe-set","response":"success"},{"item":"just-snake-case","response":"success"},{"item":"just-throttle","response":"success"},{"item":"jweixin","response":"success"},{"item":"jwk-to-pem","response":"success"},{"item":"jwplayer","response":"success"},{"item":"jws","response":"success"},{"item":"jwt-client","response":"success"},{"item":"jwt-decode","response":"success"},{"item":"jwt-express","response":"success"},{"item":"jwt-simple","response":"success"},{"item":"jwt-then","response":"success"},{"item":"jxon","response":"success"},{"item":"k6","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\n\n../DefinitelyTyped/types/k6/global.d.ts(53,9): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\nnode_modules/typescript/lib/lib.dom.d.ts(19729,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n"},{"item":"kafka-node-avro","response":"success"},{"item":"kamailio-kemi","response":"success"},{"item":"kap-plugin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"karma","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"karma-brief-reporter","response":"success"},{"item":"karma-browserify","response":"success"},{"item":"karma-browserstack-launcher","response":"success"},{"item":"karma-chai","response":"success"},{"item":"karma-chai-sinon","response":"success"},{"item":"karma-chrome-launcher","response":"success"},{"item":"karma-coverage","response":"success"},{"item":"karma-coverage-istanbul-reporter","response":"success"},{"item":"karma-detect-browsers","response":"success"},{"item":"karma-env-preprocessor","response":"success"},{"item":"karma-firefox-launcher","response":"success"},{"item":"karma-fixture","response":"success"},{"item":"karma-html-detailed-reporter","response":"success"},{"item":"karma-ie-launcher","response":"success"},{"item":"karma-jasmine","response":"success"},{"item":"karma-jasmine-html-reporter","response":"success"},{"item":"karma-jasmine-spec-tags","response":"success"},{"item":"karma-jsdom-launcher","response":"success"},{"item":"karma-json-preprocessor","response":"success"},{"item":"karma-json-to-file-reporter","response":"success"},{"item":"karma-junit-reporter","response":"success"},{"item":"karma-material-reporter","response":"success"},{"item":"karma-mocha","response":"success"},{"item":"karma-mocha-reporter","response":"success"},{"item":"karma-parallel","response":"success"},{"item":"karma-remap-coverage","response":"success"},{"item":"karma-snapshot","response":"success"},{"item":"karma-spec-reporter","response":"success"},{"item":"karma-summary-reporter","response":"success"},{"item":"karma-webpack","response":"success"},{"item":"katex","response":"success"},{"item":"kcors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"kd-tree-javascript","response":"success"},{"item":"kdbush","response":"success"},{"item":"kdbxweb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"keen-tracking","response":"success"},{"item":"kefir","response":"success"},{"item":"kendo-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"kerberos","response":"success"},{"item":"keyboardjs","response":"success"},{"item":"keycloak-connect","response":"success"},{"item":"keygrip","response":"success"},{"item":"keymaster","response":"success"},{"item":"keymirror","response":"success"},{"item":"keypress.js","response":"success"},{"item":"keystonejs__adapter-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"keystonejs__adapter-mongoose","response":"success"},{"item":"keystonejs__apollo-helpers","response":"success"},{"item":"keystonejs__app-admin-ui","response":"success"},{"item":"keystonejs__app-graphql","response":"success"},{"item":"keystonejs__app-next","response":"success"},{"item":"keystonejs__app-nuxt","response":"success"},{"item":"keystonejs__app-static","response":"success"},{"item":"keystonejs__auth-passport","response":"success"},{"item":"keystonejs__auth-password","response":"success"},{"item":"keystonejs__email","response":"success"},{"item":"keystonejs__fields","response":"success"},{"item":"keystonejs__file-adapters","response":"success"},{"item":"keystonejs__keystone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"keystonejs__list-plugins","response":"success"},{"item":"keystonejs__logger","response":"success"},{"item":"keystonejs__oembed-adapters","response":"success"},{"item":"keystonejs__session","response":"success"},{"item":"keysym","response":"success"},{"item":"keyv","response":"success"},{"item":"keyv__mongo","response":"success"},{"item":"keyv__mysql","response":"success"},{"item":"keyv__postgres","response":"success"},{"item":"keyv__redis","response":"success"},{"item":"keyv__sqlite","response":"success"},{"item":"kii-cloud-sdk","response":"success"},{"item":"kik-browser","response":"success"},{"item":"kind-of","response":"success"},{"item":"kineticjs","response":"success"},{"item":"kissfft-js","response":"success"},{"item":"kiwicom__orbit-design-tokens","response":"success"},{"item":"klaw","response":"success"},{"item":"klaw-sync","response":"success"},{"item":"kms-json","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"knex-db-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knex-postgis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knockback","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'kind' of undefined\n"},{"item":"knockout","response":"success"},{"item":"knockout-amd-helpers","response":"success"},{"item":"knockout-postbox","response":"success"},{"item":"knockout-secure-binding","response":"success"},{"item":"knockout-transformations","response":"success"},{"item":"knockout.deferred.updates","response":"success"},{"item":"knockout.editables","response":"success"},{"item":"knockout.es5","response":"success"},{"item":"knockout.kogrid","response":"success"},{"item":"knockout.mapper","response":"success"},{"item":"knockout.mapping","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"knockout.projections","response":"success"},{"item":"knockout.punches","response":"success"},{"item":"knockout.rx","response":"success"},{"item":"knockout.validation","response":"success"},{"item":"knockout.viewmodel","response":"success"},{"item":"knockstrap","response":"success"},{"item":"knuddels-userapps-api","response":"success"},{"item":"knuth-shuffle","response":"success"},{"item":"ko.plus","response":"success"},{"item":"koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-basic-auth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bodyparser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bouncer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bunyan-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cache-control","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-conditional-get","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-csrf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-dec-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"koa-docs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ejs","response":"success"},{"item":"koa-etag","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-favicon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-generic-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-graphql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-helmet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-json-error","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log4","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger-winston","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-morgan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-mount","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-passport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"koa-pino-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-qs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit-lru","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-redis","response":"success"},{"item":"koa-redis-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-response-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-route","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"koa-send","response":"success"},{"item":"koa-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-session-minimal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-sslify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-views","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-webpack","response":"success"},{"item":"koa-websocket","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-xml-body","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-session-redis","response":"success"},{"item":"koa__cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"koji-tools","response":"success"},{"item":"kolite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/kolite"},{"item":"kompression","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"konami.js","response":"success"},{"item":"kos-core","response":"success"},{"item":"kraken-js","response":"success"},{"item":"kramed","response":"success"},{"item":"kss","response":"success"},{"item":"kue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"kue-ui-client","response":"success"},{"item":"kurento-client","response":"success"},{"item":"kurento-utils","response":"success"},{"item":"kuromoji","response":"success"},{"item":"kythe","response":"success"},{"item":"lab","response":"success"},{"item":"labeled-stream-splicer","response":"success"},{"item":"lambda-log","response":"success"},{"item":"lambda-tester","response":"success"},{"item":"lambda-wrapper","response":"success"},{"item":"lang.js","response":"success"},{"item":"langmap","response":"success"},{"item":"lasso","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"later","response":"success"},{"item":"latinize","response":"success"},{"item":"latlon-geohash","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"launchpad","response":"success"},{"item":"layui-layer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"layzr.js","response":"success"},{"item":"lazy-brush","response":"success"},{"item":"lazy-property","response":"success"},{"item":"lazy.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lazypipe","response":"success"},{"item":"ldap-filters","response":"success"},{"item":"ldapjs","response":"success"},{"item":"ldapjs-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leadfoot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"leaflet-areaselect","response":"success"},{"item":"leaflet-curve","response":"success"},{"item":"leaflet-deepzoom","response":"success"},{"item":"leaflet-draw","response":"success"},{"item":"leaflet-editable","response":"success"},{"item":"leaflet-fullscreen","response":"success"},{"item":"leaflet-geocoder-mapzen","response":"success"},{"item":"leaflet-geosearch","response":"success"},{"item":"leaflet-gpx","response":"success"},{"item":"leaflet-groupedlayercontrol","response":"success"},{"item":"leaflet-imageoverlay-rotated","response":"success"},{"item":"leaflet-label","response":"success"},{"item":"leaflet-loading","response":"success"},{"item":"leaflet-mouse-position","response":"success"},{"item":"leaflet-polylinedecorator","response":"success"},{"item":"leaflet-providers","response":"success"},{"item":"leaflet-rastercoords","response":"success"},{"item":"leaflet-responsive-popup","response":"success"},{"item":"leaflet-rotatedmarker","response":"success"},{"item":"leaflet-routing-machine","response":"success"},{"item":"leaflet.awesome-markers","response":"success"},{"item":"leaflet.featuregroup.subgroup","response":"success"},{"item":"leaflet.fullscreen","response":"success"},{"item":"leaflet.gridlayer.googlemutant","response":"success"},{"item":"leaflet.heat","response":"success"},{"item":"leaflet.icon.glyph","response":"success"},{"item":"leaflet.locatecontrol","response":"success"},{"item":"leaflet.markercluster","response":"success"},{"item":"leaflet.markercluster.layersupport","response":"success"},{"item":"leaflet.pancontrol","response":"success"},{"item":"leaflet.pm","response":"success"},{"item":"leaflet.polylinemeasure","response":"success"},{"item":"leaflet.utm","response":"success"},{"item":"leakage","response":"success"},{"item":"leapmotionts","response":"success"},{"item":"ledgerhq__hw-transport","response":"success"},{"item":"ledgerhq__hw-transport-node-hid","response":"success"},{"item":"ledgerhq__hw-transport-u2f","response":"success"},{"item":"ledgerhq__hw-transport-webusb","response":"success"},{"item":"legal-eagle","response":"success"},{"item":"lerna-alias","response":"success"},{"item":"lerna-get-packages","response":"success"},{"item":"less","response":"success"},{"item":"less-middleware","response":"success"},{"item":"less2sass","response":"success"},{"item":"lestate","response":"success"},{"item":"level-codec","response":"success"},{"item":"level-js","response":"success"},{"item":"level-sublevel","response":"success"},{"item":"level-ttl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"leveldown","response":"success"},{"item":"levelup","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"levenshtein","response":"success"},{"item":"lexicographic-integer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"libnpmsearch","response":"success"},{"item":"libpq","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"libqp","response":"success"},{"item":"librato-node","response":"success"},{"item":"libsodium-wrappers","response":"success"},{"item":"libsodium-wrappers-sumo","response":"success"},{"item":"libxmljs","response":"success"},{"item":"libxslt","response":"success"},{"item":"license-checker","response":"success"},{"item":"license-checker-webpack-plugin","response":"success"},{"item":"lifeomic__axios-fetch","response":"success"},{"item":"liftoff","response":"success"},{"item":"light-sdk","response":"success"},{"item":"lightpick","response":"success"},{"item":"lightship","response":"success"},{"item":"lil-uri","response":"success"},{"item":"lil-uuid","response":"success"},{"item":"lime-js","response":"success"},{"item":"line-by-line","response":"success"},{"item":"line-column","response":"success"},{"item":"line-reader","response":"success"},{"item":"linear-gradient","response":"success"},{"item":"lingui__core","response":"success"},{"item":"lingui__macro","response":"success"},{"item":"lingui__react","response":"success"},{"item":"linkify-it","response":"success"},{"item":"linkifyjs","response":"success"},{"item":"list-git-remotes","response":"success"},{"item":"list-stream","response":"success"},{"item":"list.js","response":"success"},{"item":"listr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"little-loader","response":"success"},{"item":"lls","response":"success"},{"item":"load-google-maps-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"loadable__component","response":"success"},{"item":"loadable__server","response":"success"},{"item":"loadable__webpack-plugin","response":"success"},{"item":"loader-runner","response":"success"},{"item":"loader-utils","response":"success"},{"item":"loadicons","response":"success"},{"item":"loadjs","response":"success"},{"item":"loadware","response":"success"},{"item":"lobibox","response":"success"},{"item":"local-dynamo","response":"success"},{"item":"local-storage","response":"success"},{"item":"locale","response":"success"},{"item":"localized-countries","response":"success"},{"item":"localizejs-library","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"localtunnel","response":"success"},{"item":"lockfile","response":"success"},{"item":"lockr","response":"success"},{"item":"locks","response":"success"},{"item":"locutus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lodash","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash-deep","response":"success"},{"item":"lodash-es","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n"},{"item":"lodash-webpack-plugin","response":"success"},{"item":"lodash.add","response":"success"},{"item":"lodash.after","response":"success"},{"item":"lodash.ary","response":"success"},{"item":"lodash.assign","response":"success"},{"item":"lodash.assignin","response":"success"},{"item":"lodash.assigninwith","response":"success"},{"item":"lodash.assignwith","response":"success"},{"item":"lodash.at","response":"success"},{"item":"lodash.attempt","response":"success"},{"item":"lodash.before","response":"success"},{"item":"lodash.bind","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.bindall","response":"success"},{"item":"lodash.bindkey","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.camelcase","response":"success"},{"item":"lodash.capitalize","response":"success"},{"item":"lodash.castarray","response":"success"},{"item":"lodash.ceil","response":"success"},{"item":"lodash.chunk","response":"success"},{"item":"lodash.clamp","response":"success"},{"item":"lodash.clone","response":"success"},{"item":"lodash.clonedeep","response":"success"},{"item":"lodash.clonedeepwith","response":"success"},{"item":"lodash.clonewith","response":"success"},{"item":"lodash.compact","response":"success"},{"item":"lodash.concat","response":"success"},{"item":"lodash.cond","response":"success"},{"item":"lodash.constant","response":"success"},{"item":"lodash.countby","response":"success"},{"item":"lodash.create","response":"success"},{"item":"lodash.curry","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.curryright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.debounce","response":"success"},{"item":"lodash.deburr","response":"success"},{"item":"lodash.defaults","response":"success"},{"item":"lodash.defaultsdeep","response":"success"},{"item":"lodash.defer","response":"success"},{"item":"lodash.delay","response":"success"},{"item":"lodash.difference","response":"success"},{"item":"lodash.differenceby","response":"success"},{"item":"lodash.differencewith","response":"success"},{"item":"lodash.divide","response":"success"},{"item":"lodash.drop","response":"success"},{"item":"lodash.dropright","response":"success"},{"item":"lodash.droprightwhile","response":"success"},{"item":"lodash.dropwhile","response":"success"},{"item":"lodash.endswith","response":"success"},{"item":"lodash.eq","response":"success"},{"item":"lodash.escape","response":"success"},{"item":"lodash.escaperegexp","response":"success"},{"item":"lodash.every","response":"success"},{"item":"lodash.fill","response":"success"},{"item":"lodash.filter","response":"success"},{"item":"lodash.find","response":"success"},{"item":"lodash.findindex","response":"success"},{"item":"lodash.findkey","response":"success"},{"item":"lodash.findlast","response":"success"},{"item":"lodash.findlastindex","response":"success"},{"item":"lodash.findlastkey","response":"success"},{"item":"lodash.first","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.flatmap","response":"success"},{"item":"lodash.flatmapdeep","response":"success"},{"item":"lodash.flatmapdepth","response":"success"},{"item":"lodash.flatten","response":"success"},{"item":"lodash.flattendeep","response":"success"},{"item":"lodash.flattendepth","response":"success"},{"item":"lodash.flip","response":"success"},{"item":"lodash.floor","response":"success"},{"item":"lodash.flow","response":"success"},{"item":"lodash.flowright","response":"success"},{"item":"lodash.foreach","response":"success"},{"item":"lodash.foreachright","response":"success"},{"item":"lodash.forin","response":"success"},{"item":"lodash.forinright","response":"success"},{"item":"lodash.forown","response":"success"},{"item":"lodash.forownright","response":"success"},{"item":"lodash.frompairs","response":"success"},{"item":"lodash.functions","response":"success"},{"item":"lodash.functionsin","response":"success"},{"item":"lodash.get","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash.groupby","response":"success"},{"item":"lodash.gt","response":"success"},{"item":"lodash.gte","response":"success"},{"item":"lodash.has","response":"success"},{"item":"lodash.hasin","response":"success"},{"item":"lodash.head","response":"success"},{"item":"lodash.identity","response":"success"},{"item":"lodash.includes","response":"success"},{"item":"lodash.indexof","response":"success"},{"item":"lodash.initial","response":"success"},{"item":"lodash.inrange","response":"success"},{"item":"lodash.intersection","response":"success"},{"item":"lodash.intersectionby","response":"success"},{"item":"lodash.intersectionwith","response":"success"},{"item":"lodash.invert","response":"success"},{"item":"lodash.invertby","response":"success"},{"item":"lodash.invoke","response":"success"},{"item":"lodash.invokemap","response":"success"},{"item":"lodash.isarguments","response":"success"},{"item":"lodash.isarray","response":"success"},{"item":"lodash.isarraybuffer","response":"success"},{"item":"lodash.isarraylike","response":"success"},{"item":"lodash.isarraylikeobject","response":"success"},{"item":"lodash.isboolean","response":"success"},{"item":"lodash.isbuffer","response":"success"},{"item":"lodash.isdate","response":"success"},{"item":"lodash.iselement","response":"success"},{"item":"lodash.isempty","response":"success"},{"item":"lodash.isequal","response":"success"},{"item":"lodash.isequalwith","response":"success"},{"item":"lodash.iserror","response":"success"},{"item":"lodash.isfinite","response":"success"},{"item":"lodash.isfunction","response":"success"},{"item":"lodash.isinteger","response":"success"},{"item":"lodash.islength","response":"success"},{"item":"lodash.ismap","response":"success"},{"item":"lodash.ismatch","response":"success"},{"item":"lodash.ismatchwith","response":"success"},{"item":"lodash.isnan","response":"success"},{"item":"lodash.isnative","response":"success"},{"item":"lodash.isnil","response":"success"},{"item":"lodash.isnull","response":"success"},{"item":"lodash.isnumber","response":"success"},{"item":"lodash.isobject","response":"success"},{"item":"lodash.isobjectlike","response":"success"},{"item":"lodash.isplainobject","response":"success"},{"item":"lodash.isregexp","response":"success"},{"item":"lodash.issafeinteger","response":"success"},{"item":"lodash.isset","response":"success"},{"item":"lodash.isstring","response":"success"},{"item":"lodash.issymbol","response":"success"},{"item":"lodash.istypedarray","response":"success"},{"item":"lodash.isundefined","response":"success"},{"item":"lodash.isweakmap","response":"success"},{"item":"lodash.isweakset","response":"success"},{"item":"lodash.iteratee","response":"success"},{"item":"lodash.join","response":"success"},{"item":"lodash.kebabcase","response":"success"},{"item":"lodash.keyby","response":"success"},{"item":"lodash.keys","response":"success"},{"item":"lodash.keysin","response":"success"},{"item":"lodash.last","response":"success"},{"item":"lodash.lastindexof","response":"success"},{"item":"lodash.lowercase","response":"success"},{"item":"lodash.lowerfirst","response":"success"},{"item":"lodash.lt","response":"success"},{"item":"lodash.lte","response":"success"},{"item":"lodash.mapkeys","response":"success"},{"item":"lodash.mapvalues","response":"success"},{"item":"lodash.matches","response":"success"},{"item":"lodash.matchesproperty","response":"success"},{"item":"lodash.max","response":"success"},{"item":"lodash.maxby","response":"success"},{"item":"lodash.mean","response":"success"},{"item":"lodash.meanby","response":"success"},{"item":"lodash.memoize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.merge","response":"success"},{"item":"lodash.mergewith","response":"success"},{"item":"lodash.method","response":"success"},{"item":"lodash.methodof","response":"success"},{"item":"lodash.min","response":"success"},{"item":"lodash.minby","response":"success"},{"item":"lodash.mixin","response":"success"},{"item":"lodash.multiply","response":"success"},{"item":"lodash.negate","response":"success"},{"item":"lodash.noop","response":"success"},{"item":"lodash.now","response":"success"},{"item":"lodash.nth","response":"success"},{"item":"lodash.ntharg","response":"success"},{"item":"lodash.omit","response":"success"},{"item":"lodash.omitby","response":"success"},{"item":"lodash.once","response":"success"},{"item":"lodash.orderby","response":"success"},{"item":"lodash.over","response":"success"},{"item":"lodash.overargs","response":"success"},{"item":"lodash.overevery","response":"success"},{"item":"lodash.oversome","response":"success"},{"item":"lodash.pad","response":"success"},{"item":"lodash.padend","response":"success"},{"item":"lodash.padstart","response":"success"},{"item":"lodash.parseint","response":"success"},{"item":"lodash.partial","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partialright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partition","response":"success"},{"item":"lodash.pick","response":"success"},{"item":"lodash.pickby","response":"success"},{"item":"lodash.property","response":"success"},{"item":"lodash.propertyof","response":"success"},{"item":"lodash.pull","response":"success"},{"item":"lodash.pullall","response":"success"},{"item":"lodash.pullallby","response":"success"},{"item":"lodash.pullallwith","response":"success"},{"item":"lodash.pullat","response":"success"},{"item":"lodash.random","response":"success"},{"item":"lodash.range","response":"success"},{"item":"lodash.rangeright","response":"success"},{"item":"lodash.rearg","response":"success"},{"item":"lodash.reduce","response":"success"},{"item":"lodash.reduceright","response":"success"},{"item":"lodash.reject","response":"success"},{"item":"lodash.remove","response":"success"},{"item":"lodash.repeat","response":"success"},{"item":"lodash.replace","response":"success"},{"item":"lodash.rest","response":"success"},{"item":"lodash.result","response":"success"},{"item":"lodash.reverse","response":"success"},{"item":"lodash.round","response":"success"},{"item":"lodash.sample","response":"success"},{"item":"lodash.samplesize","response":"success"},{"item":"lodash.set","response":"success"},{"item":"lodash.setwith","response":"success"},{"item":"lodash.shuffle","response":"success"},{"item":"lodash.size","response":"success"},{"item":"lodash.slice","response":"success"},{"item":"lodash.snakecase","response":"success"},{"item":"lodash.some","response":"success"},{"item":"lodash.sortby","response":"success"},{"item":"lodash.sortedindex","response":"success"},{"item":"lodash.sortedindexby","response":"success"},{"item":"lodash.sortedindexof","response":"success"},{"item":"lodash.sortedlastindex","response":"success"},{"item":"lodash.sortedlastindexby","response":"success"},{"item":"lodash.sortedlastindexof","response":"success"},{"item":"lodash.sorteduniq","response":"success"},{"item":"lodash.sorteduniqby","response":"success"},{"item":"lodash.split","response":"success"},{"item":"lodash.spread","response":"success"},{"item":"lodash.startcase","response":"success"},{"item":"lodash.startswith","response":"success"},{"item":"lodash.stubfalse","response":"success"},{"item":"lodash.stubtrue","response":"success"},{"item":"lodash.subtract","response":"success"},{"item":"lodash.sum","response":"success"},{"item":"lodash.sumby","response":"success"},{"item":"lodash.tail","response":"success"},{"item":"lodash.take","response":"success"},{"item":"lodash.takeright","response":"success"},{"item":"lodash.takerightwhile","response":"success"},{"item":"lodash.takewhile","response":"success"},{"item":"lodash.template","response":"success"},{"item":"lodash.throttle","response":"success"},{"item":"lodash.times","response":"success"},{"item":"lodash.toarray","response":"success"},{"item":"lodash.tofinite","response":"success"},{"item":"lodash.tointeger","response":"success"},{"item":"lodash.tolength","response":"success"},{"item":"lodash.tolower","response":"success"},{"item":"lodash.tonumber","response":"success"},{"item":"lodash.topairs","response":"success"},{"item":"lodash.topairsin","response":"success"},{"item":"lodash.topath","response":"success"},{"item":"lodash.toplainobject","response":"success"},{"item":"lodash.tosafeinteger","response":"success"},{"item":"lodash.tostring","response":"success"},{"item":"lodash.toupper","response":"success"},{"item":"lodash.transform","response":"success"},{"item":"lodash.trim","response":"success"},{"item":"lodash.trimend","response":"success"},{"item":"lodash.trimstart","response":"success"},{"item":"lodash.truncate","response":"success"},{"item":"lodash.unary","response":"success"},{"item":"lodash.unescape","response":"success"},{"item":"lodash.union","response":"success"},{"item":"lodash.unionby","response":"success"},{"item":"lodash.unionwith","response":"success"},{"item":"lodash.uniq","response":"success"},{"item":"lodash.uniqby","response":"success"},{"item":"lodash.uniqueid","response":"success"},{"item":"lodash.uniqwith","response":"success"},{"item":"lodash.unset","response":"success"},{"item":"lodash.unzip","response":"success"},{"item":"lodash.unzipwith","response":"success"},{"item":"lodash.update","response":"success"},{"item":"lodash.updatewith","response":"success"},{"item":"lodash.uppercase","response":"success"},{"item":"lodash.upperfirst","response":"success"},{"item":"lodash.values","response":"success"},{"item":"lodash.valuesin","response":"success"},{"item":"lodash.without","response":"success"},{"item":"lodash.words","response":"success"},{"item":"lodash.wrap","response":"success"},{"item":"lodash.xor","response":"success"},{"item":"lodash.xorby","response":"success"},{"item":"lodash.xorwith","response":"success"},{"item":"lodash.zip","response":"success"},{"item":"lodash.zipobject","response":"success"},{"item":"lodash.zipobjectdeep","response":"success"},{"item":"lodash.zipwith","response":"success"},{"item":"log-process-errors","response":"success"},{"item":"logat","response":"success"},{"item":"logfmt","response":"success"},{"item":"logg","response":"success"},{"item":"logger","response":"success"},{"item":"loggly","response":"success"},{"item":"login-with-amazon-sdk-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"logrocket-react","response":"success"},{"item":"logrotate-stream","response":"success"},{"item":"lokijs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"lolex","response":"success"},{"item":"long","response":"success"},{"item":"loopback","response":"success"},{"item":"loopback-boot","response":"success"},{"item":"loopbench","response":"success"},{"item":"looper","response":"success"},{"item":"lory.js","response":"success"},{"item":"lossless-json","response":"success"},{"item":"lovefield","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lowdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"lowlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lozad","response":"success"},{"item":"lru-cache","response":"success"},{"item":"lscache","response":"success"},{"item":"lscache","response":"success"},{"item":"ltx","response":"success"},{"item":"luaparse","response":"success"},{"item":"lucene","response":"success"},{"item":"lunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"lusca","response":"success"},{"item":"luxon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lwip","response":"success"},{"item":"lyric-parser","response":"success"},{"item":"lyricist","response":"success"},{"item":"lz-string","response":"success"},{"item":"lzma-native","response":"success"},{"item":"macaca-circular-json","response":"success"},{"item":"macrotask","response":"success"},{"item":"magic-number","response":"success"},{"item":"magicsuggest","response":"success"},{"item":"magnet-uri","response":"success"},{"item":"mailcheck","response":"success"},{"item":"maildev","response":"success"},{"item":"mailgen","response":"success"},{"item":"mailgun-js","response":"success"},{"item":"mailparser","response":"success"},{"item":"main-bower-files","response":"success"},{"item":"mainloop.js","response":"success"},{"item":"maker.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"makeup-expander","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"makeup-floating-label","response":"success"},{"item":"makeup-keyboard-trap","response":"success"},{"item":"makeup-prevent-scroll-keys","response":"success"},{"item":"makeup-screenreader-trap","response":"success"},{"item":"mandrill-api","response":"success"},{"item":"mangopay2-nodejs-sdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"map-to-obj","response":"success"},{"item":"mapbox","response":"success"},{"item":"mapbox-gl","response":"success"},{"item":"mapbox-gl-leaflet","response":"success"},{"item":"mapbox__geo-viewport","response":"success"},{"item":"mapbox__geojson-area","response":"success"},{"item":"mapbox__mapbox-sdk","response":"success"},{"item":"mapbox__polyline","response":"success"},{"item":"mapbox__s3urls","response":"success"},{"item":"mapbox__shelf-pack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"mapbox__sphericalmercator","response":"success"},{"item":"mapbox__tile-cover","response":"success"},{"item":"mapnik","response":"success"},{"item":"mapsjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mariasql","response":"success"},{"item":"mark.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"markdown-draft-js","response":"success"},{"item":"markdown-it","response":"success"},{"item":"markdown-it-anchor","response":"success"},{"item":"markdown-it-container","response":"success"},{"item":"markdown-it-lazy-headers","response":"success"},{"item":"markdown-magic","response":"success"},{"item":"markdown-pdf","response":"success"},{"item":"markdown-table","response":"success"},{"item":"markdown-to-jsx","response":"success"},{"item":"markdownlint","response":"success"},{"item":"marked","response":"success"},{"item":"marked-terminal","response":"success"},{"item":"markedjs__html-differ","response":"success"},{"item":"marker-animate-unobtrusive","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"markitup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"marko","response":"success"},{"item":"maskedinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"masonry-layout","response":"success"},{"item":"massive","response":"success"},{"item":"match-media-mock","response":"success"},{"item":"match-sorter","response":"success"},{"item":"matchdep","response":"success"},{"item":"material-design-lite","response":"success"},{"item":"material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"material-ui-datatables","response":"success"},{"item":"material-ui-pagination","response":"success"},{"item":"material__animation","response":"success"},{"item":"material__auto-init","response":"success"},{"item":"material__base","response":"success"},{"item":"material__checkbox","response":"success"},{"item":"material__chips","response":"success"},{"item":"material__dialog","response":"success"},{"item":"material__dom","response":"success"},{"item":"material__drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__floating-label","response":"success"},{"item":"material__form-field","response":"success"},{"item":"material__grid-list","response":"success"},{"item":"material__icon-toggle","response":"success"},{"item":"material__line-ripple","response":"success"},{"item":"material__linear-progress","response":"success"},{"item":"material__list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__notched-outline","response":"success"},{"item":"material__radio","response":"success"},{"item":"material__ripple","response":"success"},{"item":"material__select","response":"success"},{"item":"material__selection-control","response":"success"},{"item":"material__slider","response":"success"},{"item":"material__snackbar","response":"success"},{"item":"material__tab","response":"success"},{"item":"material__tabs","response":"success"},{"item":"material__textfield","response":"success"},{"item":"material__toolbar","response":"success"},{"item":"material__top-app-bar","response":"success"},{"item":"materialize-css","response":"success"},{"item":"math-expression-evaluator","response":"success"},{"item":"math-random","response":"success"},{"item":"math-sign","response":"success"},{"item":"math-trunc","response":"success"},{"item":"math3d","response":"success"},{"item":"mathjax","response":"success"},{"item":"mathjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"matrix-appservice-bridge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"matrix-js-sdk","response":"success"},{"item":"matter-js","response":"success"},{"item":"mcrypt","response":"success"},{"item":"mcustomscrollbar","response":"success"},{"item":"md5","response":"success"},{"item":"md5-file","response":"success"},{"item":"mdast","response":"success"},{"item":"mdns","response":"success"},{"item":"mdurl","response":"success"},{"item":"mdx-js__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"media-typer","response":"success"},{"item":"medium-editor","response":"success"},{"item":"megajs","response":"success"},{"item":"mem-cache","response":"success"},{"item":"mem-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mem-fs-editor","response":"success"},{"item":"memcached","response":"success"},{"item":"memdown","response":"success"},{"item":"memjs","response":"success"},{"item":"memoizee","response":"success"},{"item":"memory-cache","response":"success"},{"item":"memory-fs","response":"success"},{"item":"memory-pager","response":"success"},{"item":"memorystream","response":"success"},{"item":"memwatch-next","response":"success"},{"item":"meow","response":"success"},{"item":"merge-descriptors","response":"success"},{"item":"merge-env","response":"success"},{"item":"merge-images","response":"success"},{"item":"merge-img","response":"success"},{"item":"merge-objects","response":"success"},{"item":"merge-stream","response":"success"},{"item":"merge2","response":"success"},{"item":"mergerino","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"merkle","response":"success"},{"item":"mermaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mersenne-twister","response":"success"},{"item":"meshblu","response":"success"},{"item":"mess","response":"success"},{"item":"messenger","response":"success"},{"item":"metalsmith","response":"success"},{"item":"meteor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/meteor"},{"item":"meteor-accounts-phone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-astronomy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-collection-hooks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"meteor-jboulhous-dev","response":"success"},{"item":"meteor-persistent-session","response":"success"},{"item":"meteor-prime8consulting-oauth2","response":"success"},{"item":"meteor-publish-composite","response":"success"},{"item":"meteor-roles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-universe-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"method-override","response":"success"},{"item":"methods","response":"success"},{"item":"metric-suffix","response":"success"},{"item":"meyda","response":"success"},{"item":"mfiles","response":"success"},{"item":"micro","response":"success"},{"item":"micro-cors","response":"success"},{"item":"micro-events","response":"success"},{"item":"micromatch","response":"success"},{"item":"micromodal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microrouter","response":"success"},{"item":"microservice-utilities","response":"success"},{"item":"microsoft-ajax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-graph","response":"success"},{"item":"microsoft-live-connect","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-sdk-soap","response":"success"},{"item":"microsoft__typescript-etw","response":"success"},{"item":"microsoftteams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microtime","response":"success"},{"item":"migrate-mongo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"milkcocoa","response":"success"},{"item":"millisecond","response":"success"},{"item":"milliseconds","response":"success"},{"item":"mime","response":"success"},{"item":"mime-db","response":"success"},{"item":"mime-types","response":"success"},{"item":"mimos","response":"success"},{"item":"min-document","response":"success"},{"item":"min-indent","response":"success"},{"item":"mina","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"minapp-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/minapp-env/index.d.ts(14,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n../DefinitelyTyped/types/minapp-env/index.d.ts(90,3): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(292,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1088,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1302,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(4737,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5543,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Symbol\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5587,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Map\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5591,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakMap\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5595,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Set\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5599,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakSet\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5618,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"GeneratorFunction\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5626,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Promise\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5630,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.species]' must be of type 'PromiseConstructor', but here has type 'Function'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5682,3): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\nnode_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts(225,14): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n"},{"item":"mini-css-extract-plugin","response":"success"},{"item":"mini-html-webpack-plugin","response":"success"},{"item":"minilog","response":"success"},{"item":"minimal-bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"minimal-request-promise","response":"success"},{"item":"minimalistic-assert","response":"success"},{"item":"minimatch","response":"success"},{"item":"minimist","response":"success"},{"item":"minimist-options","response":"success"},{"item":"minio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"minipass","response":"success"},{"item":"miniprogram-wxs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\n\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(28,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(96,5): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(368,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(493,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1174,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1179,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1333,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1397,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(42,15): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(56,15): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n"},{"item":"mirrorx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mithril","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mithril-global","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mitm","response":"success"},{"item":"mitsobox","response":"success"},{"item":"mixpanel","response":"success"},{"item":"mixpanel-browser","response":"success"},{"item":"mixto","response":"success"},{"item":"mjml","response":"success"},{"item":"mjml-react","response":"success"},{"item":"mkcert","response":"success"},{"item":"mkdirp","response":"success"},{"item":"mkpath","response":"success"},{"item":"ml-levenberg-marquardt","response":"success"},{"item":"mmmagic","response":"success"},{"item":"mobile-messaging-cordova","response":"success"},{"item":"mobx-apollo","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'find' of undefined\n"},{"item":"mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"mocha-each","response":"success"},{"item":"mocha-phantomjs","response":"success"},{"item":"mocha-prepare","response":"success"},{"item":"mocha-steps","response":"success"},{"item":"mocha-sugar-free","response":"success"},{"item":"mochaccino","response":"success"},{"item":"mock-aws-s3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mock-express-request","response":"success"},{"item":"mock-fs","response":"success"},{"item":"mock-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mock-raf","response":"success"},{"item":"mock-req-res","response":"success"},{"item":"mock-require","response":"success"},{"item":"mockdate","response":"success"},{"item":"mockery","response":"success"},{"item":"mockjs","response":"success"},{"item":"modernizr","response":"success"},{"item":"modesl","response":"success"},{"item":"modular-scale","response":"success"},{"item":"module-alias","response":"success"},{"item":"module-deps","response":"success"},{"item":"moji","response":"success"},{"item":"moment-business","response":"success"},{"item":"moment-business-time","response":"success"},{"item":"moment-duration-format","response":"success"},{"item":"moment-hijri","response":"success"},{"item":"moment-holiday","response":"success"},{"item":"moment-jalaali","response":"success"},{"item":"moment-precise-range-plugin","response":"success"},{"item":"moment-round","response":"success"},{"item":"moment-shortformat","response":"success"},{"item":"moment-strftime2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\n\n../DefinitelyTyped/types/moment-strftime2/index.d.ts(7,26): error TS2307: Cannot find module 'moment'.\n"},{"item":"moment-timezone","response":"success"},{"item":"money-math","response":"success"},{"item":"mongo-sanitize","response":"success"},{"item":"mongodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"mongodb-queue","response":"success"},{"item":"mongodb-uri","response":"success"},{"item":"mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-auto-increment","response":"success"},{"item":"mongoose-autopopulate","response":"success"},{"item":"mongoose-deep-populate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"mongoose-delete","response":"success"},{"item":"mongoose-geojson-schema","response":"success"},{"item":"mongoose-lean-virtuals","response":"success"},{"item":"mongoose-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate-v2","response":"success"},{"item":"mongoose-promise","response":"success"},{"item":"mongoose-seeder","response":"success"},{"item":"mongoose-sequence","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-simple-random","response":"success"},{"item":"mongoose-unique-validator","response":"success"},{"item":"mongorito","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"mongration","response":"success"},{"item":"moo","response":"success"},{"item":"moonjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n"},{"item":"morgan","response":"success"},{"item":"morris.js","response":"success"},{"item":"mosca","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"motion-scroll","response":"success"},{"item":"motor-hat","response":"success"},{"item":"mousetrap","response":"success"},{"item":"move-concurrently","response":"success"},{"item":"moveto","response":"success"},{"item":"moviedb","response":"success"},{"item":"moxios","response":"success"},{"item":"mozilla-readability","response":"success"},{"item":"mozjpeg","response":"success"},{"item":"mpromise","response":"success"},{"item":"mri","response":"success"},{"item":"mrz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"ms","response":"success"},{"item":"msgpack","response":"success"},{"item":"msgpack-lite","response":"success"},{"item":"msgpack5","response":"success"},{"item":"msnodesql","response":"success"},{"item":"mssql","response":"success"},{"item":"mta-h5-analysis","response":"success"},{"item":"mu2","response":"success"},{"item":"mui-datatables","response":"success"},{"item":"muibox","response":"success"},{"item":"muicss","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/muicss"},{"item":"multer","response":"success"},{"item":"multer-gridfs-storage","response":"success"},{"item":"multer-s3","response":"success"},{"item":"multi-progress","response":"success"},{"item":"multi-typeof","response":"success"},{"item":"multiaddr","response":"success"},{"item":"multibase","response":"success"},{"item":"multicodec","response":"success"},{"item":"multimap","response":"success"},{"item":"multiparty","response":"success"},{"item":"multipipe","response":"success"},{"item":"multiplexjs","response":"success"},{"item":"multireducer","response":"success"},{"item":"multisort","response":"success"},{"item":"multistream","response":"success"},{"item":"multivariate-normal","response":"success"},{"item":"multy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"mumath","response":"success"},{"item":"muri","response":"success"},{"item":"murmurhash","response":"success"},{"item":"murmurhash-js","response":"success"},{"item":"murmurhash3js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"musicmatch","response":"success"},{"item":"musicmetadata","response":"success"},{"item":"mustache","response":"success"},{"item":"mustache-express","response":"success"},{"item":"mutexify","response":"success"},{"item":"mv","response":"success"},{"item":"mysql","response":"success"},{"item":"mysql-import","response":"success"},{"item":"mz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"n-readlines","response":"success"},{"item":"n3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"naja","response":"success"},{"item":"named-regexp-groups","response":"success"},{"item":"named-routes","response":"success"},{"item":"nano-equal","response":"success"},{"item":"nanoajax","response":"success"},{"item":"nanoassert","response":"success"},{"item":"nanoevents","response":"success"},{"item":"nanographql","response":"success"},{"item":"nanoid","response":"success"},{"item":"nanomsg","response":"success"},{"item":"nanoscroller","response":"success"},{"item":"nanotimer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"nanp","response":"success"},{"item":"native-toast","response":"success"},{"item":"natural","response":"success"},{"item":"natural-compare","response":"success"},{"item":"natural-compare-lite","response":"success"},{"item":"natural-sort","response":"success"},{"item":"naudiodon","response":"success"},{"item":"naver-whale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navermaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navigo","response":"success"},{"item":"ncom","response":"success"},{"item":"nconf","response":"success"},{"item":"ncp","response":"success"},{"item":"ndarray","response":"success"},{"item":"ndjson","response":"success"},{"item":"ndn-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"nearley","response":"success"},{"item":"neat-csv","response":"success"},{"item":"nedb","response":"success"},{"item":"nedb-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"needle","response":"success"},{"item":"negotiator","response":"success"},{"item":"neo4j","response":"success"},{"item":"nes","response":"success"},{"item":"nestdb","response":"success"},{"item":"nested-error-stacks","response":"success"},{"item":"net-keepalive","response":"success"},{"item":"net-ticks","response":"success"},{"item":"netconf","response":"success"},{"item":"netease-captcha","response":"success"},{"item":"netlify-identity-widget","response":"success"},{"item":"netmask","response":"success"},{"item":"network-interfaces","response":"success"},{"item":"neverbounce","response":"success"},{"item":"new-relic-browser","response":"success"},{"item":"newline-remove","response":"success"},{"item":"newman","response":"success"},{"item":"newrelic","response":"success"},{"item":"newrelic__winston-enricher","response":"success"},{"item":"nexpect","response":"success"},{"item":"next-nprogress","response":"success"},{"item":"next-redux-saga","response":"success"},{"item":"next-seo","response":"success"},{"item":"next-tick","response":"success"},{"item":"nextgen-events","response":"success"},{"item":"ng-command","response":"success"},{"item":"ng-cordova","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/ng-cordova"},{"item":"ng-dialog","response":"success"},{"item":"ng-facebook","response":"success"},{"item":"ng-file-upload","response":"success"},{"item":"ng-flow","response":"success"},{"item":"ng-grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-i18next","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-notify","response":"success"},{"item":"ng-stomp","response":"success"},{"item":"ng-tags-input","response":"success"},{"item":"ngbootbox","response":"success"},{"item":"ngeohash","response":"success"},{"item":"ngkookies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngprogress","response":"success"},{"item":"ngprogress-lite","response":"success"},{"item":"ngreact","response":"success"},{"item":"ngsijs","response":"success"},{"item":"ngstorage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/ngstorage/index.d.ts(41,39): error TS2503: Cannot find namespace 'angular'.\n"},{"item":"ngtoaster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n"},{"item":"ngwysiwyg","response":"success"},{"item":"nice-try","response":"success"},{"item":"nightmare","response":"success"},{"item":"nightwatch","response":"success"},{"item":"nise","response":"success"},{"item":"nivo-slider","response":"success"},{"item":"no-scroll","response":"success"},{"item":"noble","response":"success"},{"item":"noble-mac","response":"success"},{"item":"nodal","response":"success"},{"item":"node","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'statements' of undefined\n"},{"item":"node-7z","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-abi","response":"success"},{"item":"node-apple-receipt-verify","response":"success"},{"item":"node-array-ext","response":"success"},{"item":"node-browser-history","response":"success"},{"item":"node-calendar","response":"success"},{"item":"node-cleanup","response":"success"},{"item":"node-config-manager","response":"success"},{"item":"node-crate","response":"success"},{"item":"node-cron","response":"success"},{"item":"node-dijkstra","response":"success"},{"item":"node-dir","response":"success"},{"item":"node-dogstatsd","response":"success"},{"item":"node-downloader-helper","response":"success"},{"item":"node-easy-cert","response":"success"},{"item":"node-emoji","response":"success"},{"item":"node-expat","response":"success"},{"item":"node-fetch","response":"success"},{"item":"node-fibers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-forge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-gcm","response":"success"},{"item":"node-geocoder","response":"success"},{"item":"node-getopt","response":"success"},{"item":"node-gettext","response":"success"},{"item":"node-gzip","response":"success"},{"item":"node-hid","response":"success"},{"item":"node-horseman","response":"success"},{"item":"node-hue-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-insights","response":"success"},{"item":"node-int64","response":"success"},{"item":"node-ipc","response":"success"},{"item":"node-jose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-jsfl-runner","response":"success"},{"item":"node-localstorage","response":"success"},{"item":"node-loggly-bulk","response":"success"},{"item":"node-mailjet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-memwatch","response":"success"},{"item":"node-mysql-wrapper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"node-notifier","response":"success"},{"item":"node-observer","response":"success"},{"item":"node-openload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"node-os-utils","response":"success"},{"item":"node-pdftk","response":"success"},{"item":"node-persist","response":"success"},{"item":"node-phpass","response":"success"},{"item":"node-polyglot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-powershell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-pushnotifications","response":"success"},{"item":"node-ral","response":"success"},{"item":"node-red","response":"success"},{"item":"node-redis-pubsub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"node-redmine","response":"success"},{"item":"node-resque","response":"success"},{"item":"node-rsa","response":"success"},{"item":"node-sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-sass-middleware","response":"success"},{"item":"node-schedule","response":"success"},{"item":"node-slack","response":"success"},{"item":"node-snap7","response":"success"},{"item":"node-sprite-generator","response":"success"},{"item":"node-ssdp","response":"success"},{"item":"node-ssh","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-static","response":"success"},{"item":"node-statsd","response":"success"},{"item":"node-telegram-bot-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-timecodes","response":"success"},{"item":"node-uuid","response":"success"},{"item":"node-vagrant","response":"success"},{"item":"node-validator","response":"success"},{"item":"node-vault","response":"success"},{"item":"node-wget-promise","response":"success"},{"item":"node-windows","response":"success"},{"item":"node-wit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-xlsx","response":"success"},{"item":"node-xmpp-client","response":"success"},{"item":"node-xmpp-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zendesk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zookeeper-client","response":"success"},{"item":"node-zopfli","response":"success"},{"item":"node-zopfli-es","response":"success"},{"item":"node_redis","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/node_redis"},{"item":"nodecredstash","response":"success"},{"item":"nodegit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nodejs-license-file","response":"success"},{"item":"nodemailer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"nodemailer-direct-transport","response":"success"},{"item":"nodemailer-mailgun-transport","response":"success"},{"item":"nodemailer-pickup-transport","response":"success"},{"item":"nodemailer-ses-transport","response":"success"},{"item":"nodemailer-smtp-pool","response":"success"},{"item":"nodemailer-smtp-transport","response":"success"},{"item":"nodemailer-stub-transport","response":"success"},{"item":"nodemon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"nodeunit","response":"success"},{"item":"noisejs","response":"success"},{"item":"nomnom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nonogram-solver","response":"success"},{"item":"nopt","response":"success"},{"item":"normalize-jss","response":"success"},{"item":"normalize-package-data","response":"success"},{"item":"normalize-path","response":"success"},{"item":"nosleep.js","response":"success"},{"item":"notie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/notie"},{"item":"notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notifyjs","response":"success"},{"item":"notifyjs-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nouislider","response":"success"},{"item":"novnc-core","response":"success"},{"item":"npm","response":"success"},{"item":"npm-cache-filename","response":"success"},{"item":"npm-license-crawler","response":"success"},{"item":"npm-list-author-packages","response":"success"},{"item":"npm-package-arg","response":"success"},{"item":"npm-packlist","response":"success"},{"item":"npm-paths","response":"success"},{"item":"npm-registry-fetch","response":"success"},{"item":"npm-registry-package-info","response":"success"},{"item":"npm-run","response":"success"},{"item":"npm-user-packages","response":"success"},{"item":"npm-which","response":"success"},{"item":"npmlog","response":"success"},{"item":"nprogress","response":"success"},{"item":"ns-api","response":"success"},{"item":"nslog","response":"success"},{"item":"nsqjs","response":"success"},{"item":"nssm","response":"success"},{"item":"ntlm-client","response":"success"},{"item":"nuclear-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n"},{"item":"num2fraction","response":"success"},{"item":"number-is-nan","response":"success"},{"item":"number-to-words","response":"success"},{"item":"numeral","response":"success"},{"item":"numeric","response":"success"},{"item":"numjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks-date","response":"success"},{"item":"nuxtjs__auth","response":"success"},{"item":"nvd3","response":"success"},{"item":"nw.gui","response":"success"},{"item":"nw.js","response":"success"},{"item":"nwmatcher","response":"success"},{"item":"nyaapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"oakdex-pokedex","response":"success"},{"item":"oauth","response":"success"},{"item":"oauth-shim","response":"success"},{"item":"oauth.js","response":"success"},{"item":"oauth2-implicit","response":"success"},{"item":"oauth2-server","response":"success"},{"item":"oauth2orize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"obelisk.js","response":"success"},{"item":"obj-file-parser","response":"success"},{"item":"obj-str","response":"success"},{"item":"object-assign","response":"success"},{"item":"object-assign-deep","response":"success"},{"item":"object-diff","response":"success"},{"item":"object-fit-images","response":"success"},{"item":"object-hash","response":"success"},{"item":"object-inspect","response":"success"},{"item":"object-joiner","response":"success"},{"item":"object-keys","response":"success"},{"item":"object-keys-mapping","response":"success"},{"item":"object-map","response":"success"},{"item":"object-mapper","response":"success"},{"item":"object-merge","response":"success"},{"item":"object-path","response":"success"},{"item":"object-refs","response":"success"},{"item":"object.getownpropertydescriptors","response":"success"},{"item":"object.omit","response":"success"},{"item":"object.pick","response":"success"},{"item":"objtools","response":"success"},{"item":"oblo-util","response":"success"},{"item":"oboe","response":"success"},{"item":"observe-js","response":"success"},{"item":"obsolete-web","response":"success"},{"item":"oclazyload","response":"success"},{"item":"ofe","response":"success"},{"item":"office-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-js-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-runtime","response":"success"},{"item":"offline-js","response":"success"},{"item":"offscreen-canvas","response":"success"},{"item":"offscreencanvas","response":"success"},{"item":"oibackoff","response":"success"},{"item":"oidc-token-manager","response":"success"},{"item":"oja","response":"success"},{"item":"okta__okta-vue","response":"success"},{"item":"ol","response":"success"},{"item":"omelette","response":"success"},{"item":"omggif","response":"success"},{"item":"omit-empty","response":"success"},{"item":"on-finished","response":"success"},{"item":"on-headers","response":"success"},{"item":"on-wake-up","response":"success"},{"item":"once","response":"success"},{"item":"one-time","response":"success"},{"item":"onesignal-cordova-plugin","response":"success"},{"item":"onfleet__node-onfleet","response":"success"},{"item":"oniguruma","response":"success"},{"item":"onionoo","response":"success"},{"item":"ontime","response":"success"},{"item":"open-graph","response":"success"},{"item":"open-wc__testing-karma","response":"success"},{"item":"open-wc__testing-karma-bs","response":"success"},{"item":"open-wc__webpack-import-meta-loader","response":"success"},{"item":"openapi-factory","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opener","response":"success"},{"item":"openfin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"openid","response":"success"},{"item":"openjscad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"openlayers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"openpgp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"openssi-websdk","response":"success"},{"item":"openstack-wrapper","response":"success"},{"item":"opentok","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opentype.js","response":"success"},{"item":"openui5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/openui5"},{"item":"openurl","response":"success"},{"item":"openurl2","response":"success"},{"item":"opossum","response":"success"},{"item":"optics-agent","response":"success"},{"item":"optimist","response":"success"},{"item":"optimize-css-assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"oracle__oraclejet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"oracledb","response":"success"},{"item":"orchestrator","response":"success"},{"item":"orderedmap","response":"success"},{"item":"orientjs","response":"success"},{"item":"original","response":"success"},{"item":"os-homedir","response":"success"},{"item":"os-service","response":"success"},{"item":"os-tmpdir","response":"success"},{"item":"os-utils","response":"success"},{"item":"osenv","response":"success"},{"item":"osmosis","response":"success"},{"item":"osmtogeojson","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ospec","response":"success"},{"item":"osrm","response":"success"},{"item":"osrs-json-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ot","response":"success"},{"item":"ouibounce","response":"success"},{"item":"overlayscrollbars","response":"success"},{"item":"overload-protection","response":"success"},{"item":"owasp-password-strength-test","response":"success"},{"item":"owl.carousel","response":"success"},{"item":"owlcarousel","response":"success"},{"item":"p-fifo","response":"success"},{"item":"p-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"p2","response":"success"},{"item":"p5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"pa11y","response":"success"},{"item":"package-info","response":"success"},{"item":"packery","response":"success"},{"item":"pacote","response":"success"},{"item":"pad-left","response":"success"},{"item":"page","response":"success"},{"item":"page-icon","response":"success"},{"item":"pager__jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"paho-mqtt","response":"success"},{"item":"pako","response":"success"},{"item":"palx","response":"success"},{"item":"pangu","response":"success"},{"item":"papaparse","response":"success"},{"item":"parallel-transform","response":"success"},{"item":"paralleljs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parameterize","response":"success"},{"item":"parcel-bundler","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parcel-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'children' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'parent' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'require' of types 'Module' and 'Module' are not identical.\n"},{"item":"parent-package-json","response":"success"},{"item":"parents","response":"success"},{"item":"parity-pmd","response":"success"},{"item":"parity-pmr","response":"success"},{"item":"parity-poe","response":"success"},{"item":"parquetjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"parse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"parse-author","response":"success"},{"item":"parse-color","response":"success"},{"item":"parse-filepath","response":"success"},{"item":"parse-full-name","response":"success"},{"item":"parse-git-config","response":"success"},{"item":"parse-github-url","response":"success"},{"item":"parse-glob","response":"success"},{"item":"parse-human-date-range","response":"success"},{"item":"parse-json","response":"success"},{"item":"parse-link-header","response":"success"},{"item":"parse-mockdb","response":"success"},{"item":"parse-numeric-range","response":"success"},{"item":"parse-package-name","response":"success"},{"item":"parse-passwd","response":"success"},{"item":"parse-path","response":"success"},{"item":"parse-prefer-header","response":"success"},{"item":"parse-torrent","response":"success"},{"item":"parse-torrent-file","response":"success"},{"item":"parse-unit","response":"success"},{"item":"parse5","response":"success"},{"item":"parse5-html-rewriting-stream","response":"success"},{"item":"parse5-htmlparser2-tree-adapter","response":"success"},{"item":"parse5-parser-stream","response":"success"},{"item":"parse5-plain-text-conversion-stream","response":"success"},{"item":"parse5-sax-parser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"parse5-serializer-stream","response":"success"},{"item":"parsecurrency","response":"success"},{"item":"parseurl","response":"success"},{"item":"parsimmon","response":"success"},{"item":"passport","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'ids' of undefined\n"},{"item":"passport-anonymous","response":"success"},{"item":"passport-auth0","response":"success"},{"item":"passport-azure-ad","response":"success"},{"item":"passport-beam","response":"success"},{"item":"passport-bnet","response":"success"},{"item":"passport-cognito","response":"success"},{"item":"passport-discord","response":"success"},{"item":"passport-facebook","response":"success"},{"item":"passport-facebook-token","response":"success"},{"item":"passport-github","response":"success"},{"item":"passport-github2","response":"success"},{"item":"passport-google-oauth","response":"success"},{"item":"passport-google-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"passport-google-oauth20","response":"success"},{"item":"passport-http","response":"success"},{"item":"passport-http-bearer","response":"success"},{"item":"passport-instagram","response":"success"},{"item":"passport-jwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"passport-kakao","response":"success"},{"item":"passport-linkedin-oauth2","response":"success"},{"item":"passport-local","response":"success"},{"item":"passport-local-mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"passport-microsoft","response":"success"},{"item":"passport-naver","response":"success"},{"item":"passport-oauth2","response":"success"},{"item":"passport-oauth2-client-password","response":"success"},{"item":"passport-oauth2-refresh","response":"success"},{"item":"passport-remember-me-extended","response":"success"},{"item":"passport-saml","response":"success"},{"item":"passport-steam","response":"success"},{"item":"passport-strategy","response":"success"},{"item":"passport-twitter","response":"success"},{"item":"passport-unique-token","response":"success"},{"item":"passport-vkontakte","response":"success"},{"item":"passport-windowsauth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"passport.socketio","response":"success"},{"item":"password","response":"success"},{"item":"password-hash","response":"success"},{"item":"password-hash-and-salt","response":"success"},{"item":"path-is-absolute","response":"success"},{"item":"path-is-inside","response":"success"},{"item":"path-parse","response":"success"},{"item":"path-regex","response":"success"},{"item":"pathfinding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pathjs","response":"success"},{"item":"pathval","response":"success"},{"item":"pathwatcher","response":"success"},{"item":"pause","response":"success"},{"item":"payment","response":"success"},{"item":"paypal-cordova-plugin","response":"success"},{"item":"paypal-rest-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"paystack","response":"success"},{"item":"pbf","response":"success"},{"item":"pbkdf2","response":"success"},{"item":"pdf-fill-form","response":"success"},{"item":"pdf-image","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"pdf-viewer-reactjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"pdf2image","response":"success"},{"item":"pdfjs-dist","response":"success"},{"item":"pdfkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pdfmake","response":"success"},{"item":"pdfobject","response":"success"},{"item":"pebblekitjs","response":"success"},{"item":"peer-dial","response":"success"},{"item":"pegjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pell","response":"success"},{"item":"pem","response":"success"},{"item":"pem-jwk","response":"success"},{"item":"pendo-io-browser","response":"success"},{"item":"perfy","response":"success"},{"item":"permit","response":"success"},{"item":"persona","response":"success"},{"item":"pet-finder-api","response":"success"},{"item":"petit-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg-copy-streams","response":"success"},{"item":"pg-ears","response":"success"},{"item":"pg-escape","response":"success"},{"item":"pg-format","response":"success"},{"item":"pg-large-object","response":"success"},{"item":"pg-pool","response":"success"},{"item":"pg-query-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"pg-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pgwmodal","response":"success"},{"item":"phantom","response":"success"},{"item":"phantomcss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phantomjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phoenix","response":"success"},{"item":"phone","response":"success"},{"item":"phone-formatter","response":"success"},{"item":"phoneformat.js","response":"success"},{"item":"phonegap","response":"success"},{"item":"phonegap-facebook-plugin","response":"success"},{"item":"phonegap-nfc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/phonegap-nfc/index.d.ts(459,5): error TS2309: An export assignment cannot be used in a module with other exported elements.\n"},{"item":"phonegap-plugin-barcodescanner","response":"success"},{"item":"phonon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceExportDeclaration - it will convert to null"},{"item":"photonui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"photoswipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"php-serialize","response":"success"},{"item":"physijs","response":"success"},{"item":"pi-camera","response":"success"},{"item":"pi-spi","response":"success"},{"item":"pica","response":"success"},{"item":"pick-deep","response":"success"},{"item":"pick-weight","response":"success"},{"item":"pickadate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"picturefill","response":"success"},{"item":"pid-from-port","response":"success"},{"item":"pidusage","response":"success"},{"item":"pify","response":"success"},{"item":"pigpio","response":"success"},{"item":"pigpio-dht","response":"success"},{"item":"pikaday","response":"success"},{"item":"pikaday-time","response":"success"},{"item":"ping","response":"success"},{"item":"pinkyswear","response":"success"},{"item":"pino","response":"success"},{"item":"pino-http","response":"success"},{"item":"pino-multi-stream","response":"success"},{"item":"pino-std-serializers","response":"success"},{"item":"pinterest-sdk","response":"success"},{"item":"pinyin","response":"success"},{"item":"piwik-tracker","response":"success"},{"item":"pixelmatch","response":"success"},{"item":"pixl-xml","response":"success"},{"item":"pizzip","response":"success"},{"item":"pkcs7-padding","response":"success"},{"item":"pkgcloud","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pkijs","response":"success"},{"item":"places","response":"success"},{"item":"plaid-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"platform","response":"success"},{"item":"playerframework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"playmusic","response":"success"},{"item":"pleasejs","response":"success"},{"item":"plist","response":"success"},{"item":"plotly.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"plugapi","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plugin-error","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plupload","response":"success"},{"item":"pluralize","response":"success"},{"item":"plurals-cldr","response":"success"},{"item":"png.js","response":"success"},{"item":"pngjs","response":"success"},{"item":"pngjs2","response":"success"},{"item":"pngquant-bin","response":"success"},{"item":"pnpapi","response":"success"},{"item":"podcast","response":"success"},{"item":"podium","response":"success"},{"item":"poi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"point-in-polygon","response":"success"},{"item":"poker-evaluator","response":"success"},{"item":"pollyjs__adapter","response":"success"},{"item":"pollyjs__adapter-fetch","response":"success"},{"item":"pollyjs__adapter-node-http","response":"success"},{"item":"pollyjs__adapter-puppeteer","response":"success"},{"item":"pollyjs__adapter-xhr","response":"success"},{"item":"pollyjs__core","response":"success"},{"item":"pollyjs__node-server","response":"success"},{"item":"pollyjs__persister","response":"success"},{"item":"pollyjs__persister-fs","response":"success"},{"item":"pollyjs__persister-local-storage","response":"success"},{"item":"pollyjs__persister-rest","response":"success"},{"item":"pollyjs__utils","response":"success"},{"item":"polyfill-service","response":"success"},{"item":"polygon","response":"success"},{"item":"polygons-intersect","response":"success"},{"item":"polylabel","response":"success"},{"item":"polyline","response":"success"},{"item":"polymer","response":"success"},{"item":"polymer-ts","response":"success"},{"item":"popcorn","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'kind' of undefined\n"},{"item":"port-numbers","response":"success"},{"item":"portscanner","response":"success"},{"item":"postal","response":"success"},{"item":"postcss-calc","response":"success"},{"item":"postcss-custom-properties","response":"success"},{"item":"postcss-icss-values","response":"success"},{"item":"postcss-import","response":"success"},{"item":"postcss-load-config","response":"success"},{"item":"postcss-modules-extract-imports","response":"success"},{"item":"postcss-modules-local-by-default","response":"success"},{"item":"postcss-modules-resolve-imports","response":"success"},{"item":"postcss-modules-scope","response":"success"},{"item":"postcss-modules-values","response":"success"},{"item":"postcss-nested","response":"success"},{"item":"postcss-reporter","response":"success"},{"item":"postcss-url","response":"success"},{"item":"poster-image","response":"success"},{"item":"postlight__mercury-parser","response":"success"},{"item":"postman-collection","response":"success"},{"item":"postmate","response":"success"},{"item":"pouch-redux-middleware","response":"success"},{"item":"pouchdb","response":"success"},{"item":"pouchdb-adapter-cordova-sqlite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-fruitdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-http","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-idb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-leveldb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-localstorage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-memory","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-node-websql","response":"success"},{"item":"pouchdb-adapter-websql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-browser","response":"success"},{"item":"pouchdb-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-http","response":"success"},{"item":"pouchdb-live-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-mapreduce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-replication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-upsert","response":"success"},{"item":"power-assert","response":"success"},{"item":"power-assert-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"powerapps-component-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/powerapps-component-framework"},{"item":"powerbi-visuals-tools","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"preact-i18n","response":"success"},{"item":"precise","response":"success"},{"item":"precond","response":"success"},{"item":"preferred-pm","response":"success"},{"item":"prefixfree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"preloadjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prelude-ls","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier-package-json","response":"success"},{"item":"pretty","response":"success"},{"item":"pretty-hrtime","response":"success"},{"item":"pretty-time","response":"success"},{"item":"prettyjson","response":"success"},{"item":"preval.macro","response":"success"},{"item":"primus","response":"success"},{"item":"priorityqueuejs","response":"success"},{"item":"prismic-dom","response":"success"},{"item":"prismjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"private-ip","response":"success"},{"item":"probability-distributions","response":"success"},{"item":"procfs-stats","response":"success"},{"item":"proclaim","response":"success"},{"item":"progress","response":"success"},{"item":"progress-bar-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"progress-stream","response":"success"},{"item":"progressbar","response":"success"},{"item":"progressjs","response":"success"},{"item":"proj4","response":"success"},{"item":"proj4leaflet","response":"success"},{"item":"project-name","response":"success"},{"item":"project-oxford","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"prometheus-gc-stats","response":"success"},{"item":"promise-abortable","response":"success"},{"item":"promise-dag","response":"success"},{"item":"promise-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-ftp-common","response":"success"},{"item":"promise-hash","response":"success"},{"item":"promise-inflight","response":"success"},{"item":"promise-map-limit","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise.allsettled","response":"success"},{"item":"promise.prototype.finally","response":"success"},{"item":"promised-ldap","response":"success"},{"item":"promised-temp","response":"success"},{"item":"promisify-node","response":"success"},{"item":"promisify-supertest","response":"success"},{"item":"prompt-sync","response":"success"},{"item":"prompt-sync-history","response":"success"},{"item":"promptly","response":"success"},{"item":"prompts","response":"success"},{"item":"prop-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"proper-lockfile","response":"success"},{"item":"proper-url-join","response":"success"},{"item":"properties-reader","response":"success"},{"item":"prosemirror-collab","response":"success"},{"item":"prosemirror-commands","response":"success"},{"item":"prosemirror-dev-tools","response":"success"},{"item":"prosemirror-dropcursor","response":"success"},{"item":"prosemirror-gapcursor","response":"success"},{"item":"prosemirror-history","response":"success"},{"item":"prosemirror-inputrules","response":"success"},{"item":"prosemirror-keymap","response":"success"},{"item":"prosemirror-markdown","response":"success"},{"item":"prosemirror-menu","response":"success"},{"item":"prosemirror-model","response":"success"},{"item":"prosemirror-schema-basic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"prosemirror-schema-list","response":"success"},{"item":"prosemirror-state","response":"success"},{"item":"prosemirror-test-builder","response":"success"},{"item":"prosemirror-transform","response":"success"},{"item":"prosemirror-view","response":"success"},{"item":"protoc-plugin","response":"success"},{"item":"protocol-buffers-schema","response":"success"},{"item":"protocols","response":"success"},{"item":"proton-native","response":"success"},{"item":"protoo-server","response":"success"},{"item":"protractor-browser-logs","response":"success"},{"item":"protractor-helpers","response":"success"},{"item":"protractor-http-mock","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"provinces","response":"success"},{"item":"proxy-addr","response":"success"},{"item":"proxy-from-env","response":"success"},{"item":"proxy-lists","response":"success"},{"item":"proxy-verifier","response":"success"},{"item":"proxyquire","response":"success"},{"item":"ps-tree","response":"success"},{"item":"pseudo-audio-param","response":"success"},{"item":"psl","response":"success"},{"item":"ptomasroos__react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"pty.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pubnub","response":"success"},{"item":"pubsub-js","response":"success"},{"item":"pug","response":"success"},{"item":"pull-stream","response":"success"},{"item":"pulltorefreshjs","response":"success"},{"item":"pulsar-client","response":"success"},{"item":"pump","response":"success"},{"item":"pumpify","response":"success"},{"item":"punycode","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"puppeteer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"puppeteer-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"purdy","response":"success"},{"item":"pure-render-decorator","response":"success"},{"item":"purifycss-webpack","response":"success"},{"item":"purl","response":"success"},{"item":"pusher-js","response":"success"},{"item":"pusher__chatkit-client","response":"success"},{"item":"pvutils","response":"success"},{"item":"python-shell","response":"success"},{"item":"python-struct","response":"success"},{"item":"q","response":"success"},{"item":"q-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"q-retry","response":"success"},{"item":"qhistory","response":"success"},{"item":"qiniu-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik-engineapi","response":"success"},{"item":"qlik-visualizationextensions","response":"success"},{"item":"qr-image","response":"success"},{"item":"qrcode","response":"success"},{"item":"qrcode-svg","response":"success"},{"item":"qrcode.react","response":"success"},{"item":"qs","response":"success"},{"item":"qs-middleware","response":"success"},{"item":"qtip2","response":"success"},{"item":"querystringify","response":"success"},{"item":"quick-hash","response":"success"},{"item":"quill","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\n\n../DefinitelyTyped/types/quill/node_modules/quill-delta/dist/Delta.d.ts(1,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/quill/node_modules/fast-diff/diff\"' can only be default-imported using the 'esModuleInterop' flag\n"},{"item":"quixote","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"quoted-printable","response":"success"},{"item":"qwest","response":"success"},{"item":"r-script","response":"success"},{"item":"rabbit.js","response":"success"},{"item":"rabbitmq-schema","response":"success"},{"item":"radium","response":"success"},{"item":"radius","response":"success"},{"item":"radix64","response":"success"},{"item":"raf","response":"success"},{"item":"raf-schd","response":"success"},{"item":"ramda","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"random","response":"success"},{"item":"random-boolean","response":"success"},{"item":"random-bytes","response":"success"},{"item":"random-normal","response":"success"},{"item":"random-number","response":"success"},{"item":"random-seed","response":"success"},{"item":"random-string","response":"success"},{"item":"random-useragent","response":"success"},{"item":"randombytes","response":"success"},{"item":"randomcolor","response":"success"},{"item":"randomstring","response":"success"},{"item":"range-parser","response":"success"},{"item":"range_check","response":"success"},{"item":"rangy","response":"success"},{"item":"rangyinputs","response":"success"},{"item":"ranjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raphael","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"rappid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rascal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rasha","response":"success"},{"item":"raspi","response":"success"},{"item":"raspi-board","response":"success"},{"item":"raspi-gpio","response":"success"},{"item":"raspi-i2c","response":"success"},{"item":"raspi-led","response":"success"},{"item":"raspi-onewire","response":"success"},{"item":"raspi-peripheral","response":"success"},{"item":"raspi-pwm","response":"success"},{"item":"raspi-serial","response":"success"},{"item":"raspi-soft-pwm","response":"success"},{"item":"rate-limit-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"ratelimiter","response":"success"},{"item":"raty","response":"success"},{"item":"raven","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raven-for-redux","response":"success"},{"item":"rax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"raygun","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raygun4js","response":"success"},{"item":"rbac-a","response":"success"},{"item":"rbush","response":"success"},{"item":"rc","response":"success"},{"item":"rc-select","response":"success"},{"item":"rc-slider","response":"success"},{"item":"rc-steps","response":"success"},{"item":"rc-switch","response":"success"},{"item":"rc-time-picker","response":"success"},{"item":"rc-tooltip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rc-tree","response":"success"},{"item":"rcloader","response":"success"},{"item":"rdf-data-model","response":"success"},{"item":"rdf-dataset-ext","response":"success"},{"item":"rdf-dataset-indexed","response":"success"},{"item":"rdf-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"rdf-js","response":"success"},{"item":"rdf-transform-triple-to-quad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__dataset","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'ids' of undefined\n"},{"item":"rdfjs__express-handler","response":"success"},{"item":"rdfjs__fetch","response":"success"},{"item":"rdfjs__fetch-lite","response":"success"},{"item":"rdfjs__formats-common","response":"success"},{"item":"rdfjs__namespace","response":"success"},{"item":"rdfjs__parser-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__parser-n3","response":"success"},{"item":"rdfjs__serializer-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__serializer-jsonld-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__sink-map","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__term-set","response":"success"},{"item":"rdfjs__to-ntriples","response":"success"},{"item":"rdflib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"re-base","response":"success"},{"item":"reach__alert","response":"success"},{"item":"reach__alert-dialog","response":"success"},{"item":"reach__auto-id","response":"success"},{"item":"reach__combobox","response":"success"},{"item":"reach__dialog","response":"success"},{"item":"reach__menu-button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reach__rect","response":"success"},{"item":"reach__router","response":"success"},{"item":"reach__skip-nav","response":"success"},{"item":"reach__tabs","response":"success"},{"item":"reach__tooltip","response":"success"},{"item":"reach__utils","response":"success"},{"item":"reach__visually-hidden","response":"success"},{"item":"reach__window-size","response":"success"},{"item":"react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-adal","response":"success"},{"item":"react-adaptive-hooks","response":"success"},{"item":"react-add-to-calendar","response":"success"},{"item":"react-addons-create-fragment","response":"success"},{"item":"react-addons-css-transition-group","response":"success"},{"item":"react-addons-linked-state-mixin","response":"success"},{"item":"react-addons-perf","response":"success"},{"item":"react-addons-pure-render-mixin","response":"success"},{"item":"react-addons-shallow-compare","response":"success"},{"item":"react-addons-test-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-addons-transition-group","response":"success"},{"item":"react-addons-update","response":"success"},{"item":"react-albus","response":"success"},{"item":"react-alert","response":"success"},{"item":"react-amplitude","response":"success"},{"item":"react-animate-on-scroll","response":"success"},{"item":"react-app","response":"success"},{"item":"react-aria-live","response":"success"},{"item":"react-aria-menubutton","response":"success"},{"item":"react-aria-modal","response":"success"},{"item":"react-audio-player","response":"success"},{"item":"react-autocomplete","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"react-autosuggest","response":"success"},{"item":"react-avatar-editor","response":"success"},{"item":"react-axe","response":"success"},{"item":"react-beautiful-dnd","response":"success"},{"item":"react-beforeunload","response":"success"},{"item":"react-better-password","response":"success"},{"item":"react-big-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-big-scheduler","response":"success"},{"item":"react-blessed","response":"success"},{"item":"react-body-classname","response":"success"},{"item":"react-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-bootstrap-date-picker","response":"success"},{"item":"react-bootstrap-daterangepicker","response":"success"},{"item":"react-bootstrap-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-bootstrap-table-next","response":"success"},{"item":"react-bootstrap-table2-filter","response":"success"},{"item":"react-bootstrap-table2-paginator","response":"success"},{"item":"react-bootstrap-table2-toolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-bootstrap-typeahead","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-breadcrumbs","response":"success"},{"item":"react-breadcrumbs-dynamic","response":"success"},{"item":"react-broadcast","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-burger-menu","response":"success"},{"item":"react-bytesize-icons","response":"success"},{"item":"react-cache","response":"success"},{"item":"react-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-calendar-heatmap","response":"success"},{"item":"react-calendar-timeline","response":"success"},{"item":"react-canvas-draw","response":"success"},{"item":"react-cartographer","response":"success"},{"item":"react-chat-widget","response":"success"},{"item":"react-click-outside","response":"success"},{"item":"react-click-outside-hook","response":"success"},{"item":"react-close-on-escape","response":"success"},{"item":"react-codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-coinhive","response":"success"},{"item":"react-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-confirm","response":"success"},{"item":"react-cookies","response":"success"},{"item":"react-copy-to-clipboard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-copy-write","response":"success"},{"item":"react-count-to","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-countdown-circle-timer","response":"success"},{"item":"react-countup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-credit-cards","response":"success"},{"item":"react-cropper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-css-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-css-modules","response":"success"},{"item":"react-css-transition-replace","response":"success"},{"item":"react-csv","response":"success"},{"item":"react-currency-formatter","response":"success"},{"item":"react-custom-scrollbars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-d3-graph","response":"success"},{"item":"react-data-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"react-datagrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-date-range","response":"success"},{"item":"react-datepicker","response":"success"},{"item":"react-daterange-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"react-dates","response":"success"},{"item":"react-dev-utils","response":"success"},{"item":"react-devtools","response":"success"},{"item":"react-div-100vh","response":"success"},{"item":"react-dnd-multi-backend","response":"success"},{"item":"react-dnd-scrollzone","response":"success"},{"item":"react-document-meta","response":"success"},{"item":"react-document-title","response":"success"},{"item":"react-dom","response":"success"},{"item":"react-dom-factories","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-draft-wysiwyg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-dragtastic","response":"success"},{"item":"react-dynamic-number","response":"success"},{"item":"react-easy-chart","response":"success"},{"item":"react-easy-crop","response":"success"},{"item":"react-editext","response":"success"},{"item":"react-elemental","response":"success"},{"item":"react-email-editor","response":"success"},{"item":"react-event-listener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-fa","response":"success"},{"item":"react-facebook-login","response":"success"},{"item":"react-facebook-login-component","response":"success"},{"item":"react-fade-in","response":"success"},{"item":"react-faux-dom","response":"success"},{"item":"react-file-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-file-reader-input","response":"success"},{"item":"react-filepond","response":"success"},{"item":"react-final-form-listeners","response":"success"},{"item":"react-flag-icon-css","response":"success"},{"item":"react-flags-select","response":"success"},{"item":"react-flatpickr","response":"success"},{"item":"react-flex","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-flexr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-fontawesome","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-form","response":"success"},{"item":"react-foundation","response":"success"},{"item":"react-frame-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-frontload","response":"success"},{"item":"react-gamepad","response":"success"},{"item":"react-gateway","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-geosuggest","response":"success"},{"item":"react-github-button","response":"success"},{"item":"react-global-configuration","response":"success"},{"item":"react-google-login-component","response":"success"},{"item":"react-google-maps-loader","response":"success"},{"item":"react-google-places-suggest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-google-recaptcha","response":"success"},{"item":"react-gravatar","response":"success"},{"item":"react-grid-layout","response":"success"},{"item":"react-gtm-module","response":"success"},{"item":"react-hamburger-menu","response":"success"},{"item":"react-hammerjs","response":"success"},{"item":"react-headroom","response":"success"},{"item":"react-helmet","response":"success"},{"item":"react-helmet-with-visor","response":"success"},{"item":"react-highcharts","response":"success"},{"item":"react-highlight","response":"success"},{"item":"react-highlight-words","response":"success"},{"item":"react-highlight.js","response":"success"},{"item":"react-highlighter","response":"success"},{"item":"react-holder","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"react-hook-mousetrap","response":"success"},{"item":"react-hooks-helper","response":"success"},{"item":"react-howler","response":"success"},{"item":"react-html-parser","response":"success"},{"item":"react-hyperscript","response":"success"},{"item":"react-icofont","response":"success"},{"item":"react-icon-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-image-crop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"react-image-fallback","response":"success"},{"item":"react-image-gallery","response":"success"},{"item":"react-image-magnify","response":"success"},{"item":"react-imageloader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-images","response":"success"},{"item":"react-imgix","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-imgpro","response":"success"},{"item":"react-immutable-proptypes","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-infinite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-calendar","response":"success"},{"item":"react-infinite-scroll-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-input-autosize","response":"success"},{"item":"react-input-calendar","response":"success"},{"item":"react-input-mask","response":"success"},{"item":"react-inspector","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-instantsearch","response":"success"},{"item":"react-instantsearch-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-interactive","response":"success"},{"item":"react-intl-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-is","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-is-deprecated","response":"success"},{"item":"react-js-pagination","response":"success"},{"item":"react-json","response":"success"},{"item":"react-json-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-jsonschema-form","response":"success"},{"item":"react-kawaii","response":"success"},{"item":"react-lazy-load-image-component","response":"success"},{"item":"react-lazyload","response":"success"},{"item":"react-lazylog","response":"success"},{"item":"react-leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-leaflet-markercluster","response":"success"},{"item":"react-leaflet-sidebarv2","response":"success"},{"item":"react-lifecycle-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-lifecycles-compat","response":"success"},{"item":"react-linkify","response":"success"},{"item":"react-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-loadable","response":"success"},{"item":"react-loadable-visibility","response":"success"},{"item":"react-loader","response":"success"},{"item":"react-loader-spinner","response":"success"},{"item":"react-lottie","response":"success"},{"item":"react-mailchimp-subscribe","response":"success"},{"item":"react-map-gl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-maskedinput","response":"success"},{"item":"react-material-ui-form-validator","response":"success"},{"item":"react-mathquill","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-mce","response":"success"},{"item":"react-mdl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-measure","response":"success"},{"item":"react-medium-image-zoom","response":"success"},{"item":"react-mentions","response":"success"},{"item":"react-messenger-checkbox","response":"success"},{"item":"react-mic","response":"success"},{"item":"react-mixin","response":"success"},{"item":"react-modal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"react-motion","response":"success"},{"item":"react-motion-loop","response":"success"},{"item":"react-motion-slider","response":"success"},{"item":"react-motion-ui-pack","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-actionsheet","response":"success"},{"item":"react-native-android-taskdescription","response":"success"},{"item":"react-native-app-intro-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-app-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-appsflyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-audio","response":"success"},{"item":"react-native-auth0","response":"success"},{"item":"react-native-autocomplete-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-awesome-card-io","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-background-downloader","response":"success"},{"item":"react-native-background-timer","response":"success"},{"item":"react-native-bluetooth-serial","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendar-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-canvas","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-charts-wrapper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-check-box","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-communications","response":"success"},{"item":"react-native-community__cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-native-custom-tabs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-datawedge-intents","response":"success"},{"item":"react-native-datepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialogflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-doc-viewer","response":"success"},{"item":"react-native-document-picker","response":"success"},{"item":"react-native-dotenv","response":"success"},{"item":"react-native-draggable-flatlist","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer-layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-easy-upgrade","response":"success"},{"item":"react-native-elevated-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fbsdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fetch-blob","response":"success"},{"item":"react-native-flip-card","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-google-signin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-honeywell-scanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-htmlview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-huawei-protected-apps","response":"success"},{"item":"react-native-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-incall-manager","response":"success"},{"item":"react-native-indicators","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-input-spinner","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-joi","response":"success"},{"item":"react-native-keep-awake","response":"success"},{"item":"react-native-keyboard-spacer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-loading-spinner-overlay","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-maps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-design-searchbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-dropdown","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-textfield","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mixpanel","response":"success"},{"item":"react-native-modal-dropdown","response":"success"},{"item":"react-native-modal-filter-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-modalbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-navbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-orientation","response":"success"},{"item":"react-native-pdf-lib","response":"success"},{"item":"react-native-percentage-circle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-phone-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-photo-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-platform-touchable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-popup-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-privacy-snapshot","response":"success"},{"item":"react-native-push-notification","response":"success"},{"item":"react-native-qrcode","response":"success"},{"item":"react-native-read-more-text","response":"success"},{"item":"react-native-referrer","response":"success"},{"item":"react-native-restart","response":"success"},{"item":"react-native-rss-parser","response":"success"},{"item":"react-native-safari-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scaled-image","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scrollable-tab-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"react-native-sensor-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-settings-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share-extension","response":"success"},{"item":"react-native-share-menu","response":"success"},{"item":"react-native-signature-capture","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snackbar-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snap-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sqlite-storage","response":"success"},{"item":"react-native-star-rating","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-status-bar-height","response":"success"},{"item":"react-native-svg-charts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-svg-uri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-swiper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-native-tab-navigator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-text-input-mask","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-toast-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-touch-id","response":"success"},{"item":"react-native-uuid","response":"success"},{"item":"react-native-uuid-generator","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-version-check","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-version-number","response":"success"},{"item":"react-native-video","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-video-player","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-view-pdf","response":"success"},{"item":"react-native-webrtc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-zeroconf","response":"success"},{"item":"react-native-zss-rich-text-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-no-ssr","response":"success"},{"item":"react-notification-system","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notification-system-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notify-toast","response":"success"},{"item":"react-numeric-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"react-offcanvas","response":"success"},{"item":"react-onclickoutside","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-onsenui","response":"success"},{"item":"react-outside-click-handler","response":"success"},{"item":"react-overlays","response":"success"},{"item":"react-paginate","response":"success"},{"item":"react-panelgroup","response":"success"},{"item":"react-pdf","response":"success"},{"item":"react-phone-number-input","response":"success"},{"item":"react-photoswipe","response":"success"},{"item":"react-places-autocomplete","response":"success"},{"item":"react-plaid-link","response":"success"},{"item":"react-plotly.js","response":"success"},{"item":"react-plyr","response":"success"},{"item":"react-pointable","response":"success"},{"item":"react-popover","response":"success"},{"item":"react-portal","response":"success"},{"item":"react-primitives","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-props-decorators","response":"success"},{"item":"react-qr-reader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-query","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-radio-group","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-rangeslider","response":"success"},{"item":"react-recaptcha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-recaptcha-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-reconciler","response":"success"},{"item":"react-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-redux-epic","response":"success"},{"item":"react-redux-i18n","response":"success"},{"item":"react-redux-toastr","response":"success"},{"item":"react-relay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-request","response":"success"},{"item":"react-resizable","response":"success"},{"item":"react-resize-detector","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"react-resolver","response":"success"},{"item":"react-responsive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-bootstrap","response":"success"},{"item":"react-router-config","response":"success"},{"item":"react-router-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-guard","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-hash-link","response":"success"},{"item":"react-router-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-navigation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-navigation-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-param-link","response":"success"},{"item":"react-router-redux","response":"success"},{"item":"react-router-tabs","response":"success"},{"item":"react-rte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-s-alert","response":"success"},{"item":"react-scroll","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-scroll-into-view-if-needed","response":"success"},{"item":"react-scroll-rotate","response":"success"},{"item":"react-scrollable-anchor","response":"success"},{"item":"react-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"react-scrollbar-size","response":"success"},{"item":"react-scrollspy","response":"success"},{"item":"react-select","response":"success"},{"item":"react-shadow-dom-retarget-events","response":"success"},{"item":"react-share","response":"success"},{"item":"react-show-more","response":"success"},{"item":"react-side-effect","response":"success"},{"item":"react-sidebar","response":"success"},{"item":"react-signature-canvas","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-simple-maps","response":"success"},{"item":"react-sizes","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-sketchapp","response":"success"},{"item":"react-slick","response":"success"},{"item":"react-slider","response":"success"},{"item":"react-smooth-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"react-sortable-tree","response":"success"},{"item":"react-sortable-tree-theme-file-explorer","response":"success"},{"item":"react-sound","response":"success"},{"item":"react-sparklines","response":"success"},{"item":"react-spinkit","response":"success"},{"item":"react-spinner","response":"success"},{"item":"react-splitter-layout","response":"success"},{"item":"react-star-rating-component","response":"success"},{"item":"react-stars","response":"success"},{"item":"react-sticky","response":"success"},{"item":"react-sticky-el","response":"success"},{"item":"react-stickynode","response":"success"},{"item":"react-stripe-elements","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-svg-inline","response":"success"},{"item":"react-svg-pan-zoom","response":"success"},{"item":"react-swf","response":"success"},{"item":"react-swipe","response":"success"},{"item":"react-swipeable-views","response":"success"},{"item":"react-swipeable-views-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-syntax-highlighter","response":"success"},{"item":"react-table","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-table-filter","response":"success"},{"item":"react-tabs","response":"success"},{"item":"react-tabs-redux","response":"success"},{"item":"react-tag-autocomplete","response":"success"},{"item":"react-tag-input","response":"success"},{"item":"react-tagcloud","response":"success"},{"item":"react-tagsinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"react-tap-event-plugin","response":"success"},{"item":"react-test-renderer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-text-mask","response":"success"},{"item":"react-text-truncate","response":"success"},{"item":"react-textarea-autosize","response":"success"},{"item":"react-timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-timeout","response":"success"},{"item":"react-toast-notifications","response":"success"},{"item":"react-toastr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-toggle","response":"success"},{"item":"react-tooltip","response":"success"},{"item":"react-touch","response":"success"},{"item":"react-tracking","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-transition-group","response":"success"},{"item":"react-treeview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-truncate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"react-twitter-auth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-typing-animation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-typist","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-ultimate-pagination","response":"success"},{"item":"react-user-tour","response":"success"},{"item":"react-vega","response":"success"},{"item":"react-vertical-timeline-component","response":"success"},{"item":"react-virtual-keyboard","response":"success"},{"item":"react-virtualized","response":"success"},{"item":"react-virtualized-auto-sizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-virtualized-select","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-visibility-sensor","response":"success"},{"item":"react-wait","response":"success"},{"item":"react-weui","response":"success"},{"item":"react-widgets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-widgets-moment","response":"success"},{"item":"react-window","response":"success"},{"item":"react-window-infinite-loader","response":"success"},{"item":"react-window-size","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-with-styles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-wow","response":"success"},{"item":"react-youtube","response":"success"},{"item":"react-youtube-embed","response":"success"},{"item":"reactable","response":"success"},{"item":"reactabular-dnd","response":"success"},{"item":"reactabular-sticky","response":"success"},{"item":"reactabular-table","response":"success"},{"item":"reactcss","response":"success"},{"item":"reactour","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reactstrap","response":"success"},{"item":"read","response":"success"},{"item":"read-package-tree","response":"success"},{"item":"readable-stream","response":"success"},{"item":"readdir-stream","response":"success"},{"item":"readline-sync","response":"success"},{"item":"readline-transform","response":"success"},{"item":"readmore-js","response":"success"},{"item":"reapop","response":"success"},{"item":"rebass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebind-host","response":"success"},{"item":"recaptcha2","response":"success"},{"item":"recase","response":"success"},{"item":"recharts","response":"success"},{"item":"recharts-scale","response":"success"},{"item":"rechoir","response":"success"},{"item":"recluster","response":"success"},{"item":"recompose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"reconnect-core","response":"success"},{"item":"reconnectingwebsocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"recorder-js","response":"success"},{"item":"recurly__recurly-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"recursive-readdir","response":"success"},{"item":"redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-errors","response":"success"},{"item":"redis-info","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"redis-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-rate-limiter","response":"success"},{"item":"redis-scripto","response":"success"},{"item":"redlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"redux-action","response":"success"},{"item":"redux-action-utils","response":"success"},{"item":"redux-actions","response":"success"},{"item":"redux-api-middleware","response":"success"},{"item":"redux-async-queue","response":"success"},{"item":"redux-auth-wrapper","response":"success"},{"item":"redux-batched-subscribe","response":"success"},{"item":"redux-cablecar","response":"success"},{"item":"redux-debounced","response":"success"},{"item":"redux-devtools","response":"success"},{"item":"redux-devtools-dock-monitor","response":"success"},{"item":"redux-devtools-log-monitor","response":"success"},{"item":"redux-doghouse","response":"success"},{"item":"redux-duck","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-first-router","response":"success"},{"item":"redux-first-router-link","response":"success"},{"item":"redux-first-router-restore-scroll","response":"success"},{"item":"redux-first-routing","response":"success"},{"item":"redux-form","response":"success"},{"item":"redux-immutable","response":"success"},{"item":"redux-immutable-state-invariant","response":"success"},{"item":"redux-infinite-scroll","response":"success"},{"item":"redux-injectable-store","response":"success"},{"item":"redux-localstorage","response":"success"},{"item":"redux-localstorage-debounce","response":"success"},{"item":"redux-localstorage-filter","response":"success"},{"item":"redux-logger","response":"success"},{"item":"redux-mock-store","response":"success"},{"item":"redux-optimistic-ui","response":"success"},{"item":"redux-orm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"redux-pack","response":"success"},{"item":"redux-persist-transform-encrypt","response":"success"},{"item":"redux-persist-transform-filter","response":"success"},{"item":"redux-promise","response":"success"},{"item":"redux-promise-listener","response":"success"},{"item":"redux-recycle","response":"success"},{"item":"redux-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"redux-saga-routines","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-saga-tester","response":"success"},{"item":"redux-seamless-immutable","response":"success"},{"item":"redux-sentry-middleware","response":"success"},{"item":"redux-shortcuts","response":"success"},{"item":"redux-socket.io","response":"success"},{"item":"redux-state-sync","response":"success"},{"item":"redux-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"redux-storage-engine-jsurl","response":"success"},{"item":"redux-storage-engine-localstorage","response":"success"},{"item":"redux-test-utils","response":"success"},{"item":"redux-testkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"redux-ui","response":"success"},{"item":"ref","response":"success"},{"item":"ref-array","response":"success"},{"item":"ref-array-di","response":"success"},{"item":"ref-napi","response":"success"},{"item":"ref-struct","response":"success"},{"item":"ref-struct-di","response":"success"},{"item":"ref-union","response":"success"},{"item":"ref-union-di","response":"success"},{"item":"reflexbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"reflux","response":"success"},{"item":"refractor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"refresh-fetch","response":"success"},{"item":"registry-auth-token","response":"success"},{"item":"regression","response":"success"},{"item":"rehype-react","response":"success"},{"item":"relateurl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"relaxed-json","response":"success"},{"item":"relay-compiler","response":"success"},{"item":"relay-config","response":"success"},{"item":"relay-runtime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"relay-test-utils","response":"success"},{"item":"rellax","response":"success"},{"item":"remarkable","response":"success"},{"item":"remote-origin-url","response":"success"},{"item":"remote-redux-devtools","response":"success"},{"item":"remotedev-serialize","response":"success"},{"item":"remove-markdown","response":"success"},{"item":"rename","response":"success"},{"item":"repeat-element","response":"success"},{"item":"repeat-string","response":"success"},{"item":"repeating","response":"success"},{"item":"replace-ext","response":"success"},{"item":"replacestream","response":"success"},{"item":"request","response":"success"},{"item":"request-as-curl","response":"success"},{"item":"request-debug","response":"success"},{"item":"request-ip","response":"success"},{"item":"request-promise","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"request-promise-native","response":"success"},{"item":"request-stats","response":"success"},{"item":"requestidlecallback","response":"success"},{"item":"requestretry","response":"success"},{"item":"require-dir","response":"success"},{"item":"require-directory","response":"success"},{"item":"require-from-string","response":"success"},{"item":"require-relative","response":"success"},{"item":"requireindex","response":"success"},{"item":"requirejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'Require', but here has type 'NodeRequire'.\n../DefinitelyTyped/types/node/module.d.ts(57,14): error TS2300: Duplicate identifier 'Module'.\n../DefinitelyTyped/types/requirejs/index.d.ts(38,11): error TS2300: Duplicate identifier 'Module'.\n"},{"item":"requirejs-domready","response":"success"},{"item":"requires-port","response":"success"},{"item":"resemblejs","response":"success"},{"item":"reserved-words","response":"success"},{"item":"reservoir","response":"success"},{"item":"resize-img","response":"success"},{"item":"resize-observer-browser","response":"success"},{"item":"resolve","response":"success"},{"item":"resolve-options","response":"success"},{"item":"resolve-protobuf-schema","response":"success"},{"item":"resourcejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"response-time","response":"success"},{"item":"responselike","response":"success"},{"item":"rest","response":"success"},{"item":"restangular","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"restful.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"restify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restify-cookies","response":"success"},{"item":"restify-cors-middleware","response":"success"},{"item":"restify-errors","response":"success"},{"item":"restify-plugins","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restler","response":"success"},{"item":"restling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"rethinkdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"retinajs","response":"success"},{"item":"retry","response":"success"},{"item":"retry-as-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"revalidate","response":"success"},{"item":"revalidator","response":"success"},{"item":"reveal","response":"success"},{"item":"rewire","response":"success"},{"item":"rfc2047","response":"success"},{"item":"rfdc","response":"success"},{"item":"rgrove__parse-xml","response":"success"},{"item":"rheostat","response":"success"},{"item":"rickshaw","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/rickshaw"},{"item":"right-align","response":"success"},{"item":"rijndael-js","response":"success"},{"item":"rimraf","response":"success"},{"item":"ringbufferjs","response":"success"},{"item":"riot-api-nodejs","response":"success"},{"item":"riot-games-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"riot-route","response":"success"},{"item":"riotcontrol","response":"success"},{"item":"riotjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ripemd160","response":"success"},{"item":"rison","response":"success"},{"item":"rivets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rmc-drawer","response":"success"},{"item":"rmfr","response":"success"},{"item":"rn-app-upgrade","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"rn-fetch-blob","response":"success"},{"item":"roarr","response":"success"},{"item":"robust-point-in-polygon","response":"success"},{"item":"rocksdb","response":"success"},{"item":"rockset","response":"success"},{"item":"roll","response":"success"},{"item":"rolling-rate-limiter","response":"success"},{"item":"rollup-plugin-buble","response":"success"},{"item":"rollup-plugin-json","response":"success"},{"item":"rollup-plugin-node-builtins","response":"success"},{"item":"rollup-plugin-node-globals","response":"success"},{"item":"rollup-plugin-peer-deps-external","response":"success"},{"item":"rollup-plugin-postcss","response":"success"},{"item":"rollup-plugin-progress","response":"success"},{"item":"rollup-plugin-size-snapshot","response":"success"},{"item":"rollup-plugin-sourcemaps","response":"success"},{"item":"rollup-plugin-url","response":"success"},{"item":"rollup-plugin-visualizer","response":"success"},{"item":"rollup__plugin-virtual","response":"success"},{"item":"roman-numerals","response":"success"},{"item":"ronomon__crypto-async","response":"success"},{"item":"rosie","response":"success"},{"item":"roslib","response":"success"},{"item":"route-parser","response":"success"},{"item":"routie","response":"success"},{"item":"rox-browser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-react-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"royalslider","response":"success"},{"item":"rpio","response":"success"},{"item":"rrc","response":"success"},{"item":"rsmq-worker","response":"success"},{"item":"rsocket-core","response":"success"},{"item":"rsocket-flowable","response":"success"},{"item":"rsocket-tcp-client","response":"success"},{"item":"rsocket-tcp-server","response":"success"},{"item":"rsocket-types","response":"success"},{"item":"rsocket-websocket-client","response":"success"},{"item":"rsocket-websocket-server","response":"success"},{"item":"rss","response":"success"},{"item":"rsvp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertyDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null"},{"item":"rsync","response":"success"},{"item":"rtl-detect","response":"success"},{"item":"rtlcss","response":"success"},{"item":"rtp-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rtree","response":"success"},{"item":"run-parallel","response":"success"},{"item":"run-parallel-limit","response":"success"},{"item":"run-sequence","response":"success"},{"item":"runes","response":"success"},{"item":"rwlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"rx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-core","response":"success"},{"item":"rx-core-binding","response":"success"},{"item":"rx-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n"},{"item":"rx-lite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-aggregates","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-backpressure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-coincidence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-experimental","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-joinpatterns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-virtualtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-node","response":"success"},{"item":"rx.wamp","response":"success"},{"item":"s3-download-stream","response":"success"},{"item":"s3-upload-stream","response":"success"},{"item":"s3-uploader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"s3rver","response":"success"},{"item":"sade","response":"success"},{"item":"safari-extension","response":"success"},{"item":"safari-extension-content","response":"success"},{"item":"safe-compare","response":"success"},{"item":"safe-json-stringify","response":"success"},{"item":"safe-regex","response":"success"},{"item":"safe-timers","response":"success"},{"item":"safer-buffer","response":"success"},{"item":"sails.io.js","response":"success"},{"item":"sailthru-client","response":"success"},{"item":"saml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"saml2-js","response":"success"},{"item":"saml20","response":"success"},{"item":"samlp","response":"success"},{"item":"sammy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sanctuary","response":"success"},{"item":"sandboxed-module","response":"success"},{"item":"sane","response":"success"},{"item":"sane-email-validation","response":"success"},{"item":"sanitize-html","response":"success"},{"item":"sanitizer","response":"success"},{"item":"sap__xsenv","response":"success"},{"item":"sarif","response":"success"},{"item":"sasl-anonymous","response":"success"},{"item":"sasl-digest-md5","response":"success"},{"item":"sasl-external","response":"success"},{"item":"sasl-plain","response":"success"},{"item":"sasl-scram-sha-1","response":"success"},{"item":"saslmechanisms","response":"success"},{"item":"saslprep","response":"success"},{"item":"sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sass-graph","response":"success"},{"item":"sat","response":"success"},{"item":"satnav","response":"success"},{"item":"save-csv","response":"success"},{"item":"sawtooth-sdk","response":"success"},{"item":"sax","response":"success"},{"item":"sax-stream","response":"success"},{"item":"saywhen","response":"success"},{"item":"sbd","response":"success"},{"item":"sc-auth","response":"success"},{"item":"sc-broker","response":"success"},{"item":"sc-broker-cluster","response":"success"},{"item":"sc-channel","response":"success"},{"item":"sc-errors","response":"success"},{"item":"sc-framework-health-check","response":"success"},{"item":"sc-hot-reboot","response":"success"},{"item":"scalike","response":"success"},{"item":"scc-broker-client","response":"success"},{"item":"schedule","response":"success"},{"item":"scheduler","response":"success"},{"item":"schema-registry","response":"success"},{"item":"schwifty","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"scoped-http-client","response":"success"},{"item":"scrambo","response":"success"},{"item":"screeps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"screeps-profiler","response":"success"},{"item":"script-ext-html-webpack-plugin","response":"success"},{"item":"scriptable-ios","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scriptjs","response":"success"},{"item":"scroll","response":"success"},{"item":"scroll-into-view","response":"success"},{"item":"scroll-to-element","response":"success"},{"item":"scrollbooster","response":"success"},{"item":"scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scrollparent","response":"success"},{"item":"scrollreveal","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"secure-json-parse","response":"success"},{"item":"secure-password","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"secure-random-password","response":"success"},{"item":"seed-random","response":"success"},{"item":"seededshuffle","response":"success"},{"item":"seedrandom","response":"success"},{"item":"seen","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"segment-analytics","response":"success"},{"item":"select2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"selectables","response":"success"},{"item":"selectize","response":"success"},{"item":"selenium-standalone","response":"success"},{"item":"selenium-webdriver","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"semantic-release","response":"success"},{"item":"semantic-ui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/semantic-ui"},{"item":"semantic-ui-accordion","response":"success"},{"item":"semantic-ui-api","response":"success"},{"item":"semantic-ui-checkbox","response":"success"},{"item":"semantic-ui-dimmer","response":"success"},{"item":"semantic-ui-dropdown","response":"success"},{"item":"semantic-ui-embed","response":"success"},{"item":"semantic-ui-form","response":"success"},{"item":"semantic-ui-modal","response":"success"},{"item":"semantic-ui-nag","response":"success"},{"item":"semantic-ui-popup","response":"success"},{"item":"semantic-ui-progress","response":"success"},{"item":"semantic-ui-rating","response":"success"},{"item":"semantic-ui-search","response":"success"},{"item":"semantic-ui-shape","response":"success"},{"item":"semantic-ui-sidebar","response":"success"},{"item":"semantic-ui-site","response":"success"},{"item":"semantic-ui-sticky","response":"success"},{"item":"semantic-ui-tab","response":"success"},{"item":"semantic-ui-transition","response":"success"},{"item":"semantic-ui-visibility","response":"success"},{"item":"semaphore","response":"success"},{"item":"semver","response":"success"},{"item":"semver-compare","response":"success"},{"item":"semver-sort","response":"success"},{"item":"semver-stable","response":"success"},{"item":"semver-utils","response":"success"},{"item":"sencha_touch","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"send","response":"success"},{"item":"sendmail","response":"success"},{"item":"seneca","response":"success"},{"item":"sentry__webpack-plugin","response":"success"},{"item":"sequelize","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sequelize-cursor-pagination","response":"success"},{"item":"sequelize-fixtures","response":"success"},{"item":"sequencify","response":"success"},{"item":"sequester","response":"success"},{"item":"serialize-javascript","response":"success"},{"item":"serialport","response":"success"},{"item":"serve-favicon","response":"success"},{"item":"serve-handler","response":"success"},{"item":"serve-index","response":"success"},{"item":"serve-static","response":"success"},{"item":"server","response":"success"},{"item":"server-destroy","response":"success"},{"item":"serverless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"serverless-jest-plugin","response":"success"},{"item":"service-worker-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(15,32): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(26,18): error TS2304: Cannot find name 'Client'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(44,34): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(47,50): error TS2304: Cannot find name 'PushEvent'.\n"},{"item":"servicenow","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow/index.d.ts(71,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"servicenow-london","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/servicenow-london\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow-london/Workflow.d.ts(1,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"serviceworker-webpack-plugin","response":"success"},{"item":"session-file-store","response":"success"},{"item":"set-cookie-parser","response":"success"},{"item":"set-interval-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"set-link","response":"success"},{"item":"set-value","response":"success"},{"item":"setasap","response":"success"},{"item":"setimmediate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"settings","response":"success"},{"item":"setup-polly-jest","response":"success"},{"item":"sha","response":"success"},{"item":"sha.js","response":"success"},{"item":"sha1","response":"success"},{"item":"sha256","response":"success"},{"item":"shallow-equals","response":"success"},{"item":"shallowequal","response":"success"},{"item":"shapefile","response":"success"},{"item":"sharedb","response":"success"},{"item":"sharepoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'kind' of undefined\n"},{"item":"sharp","response":"success"},{"item":"shasum","response":"success"},{"item":"shebang-command","response":"success"},{"item":"sheetify","response":"success"},{"item":"shell-escape","response":"success"},{"item":"shell-quote","response":"success"},{"item":"shelljs","response":"success"},{"item":"shelljs-exec-proxy","response":"success"},{"item":"shevyjs","response":"success"},{"item":"shimmer","response":"success"},{"item":"shipit-cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shipit-utils","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shopify-buy","response":"success"},{"item":"shorten-repo-url","response":"success"},{"item":"shortid","response":"success"},{"item":"shot","response":"success"},{"item":"should-sinon","response":"success"},{"item":"showdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"shpjs","response":"success"},{"item":"shrink-ray","response":"success"},{"item":"shuffle-array","response":"success"},{"item":"shuffle-seed","response":"success"},{"item":"sic-ecies","response":"success"},{"item":"sic-list","response":"success"},{"item":"siema","response":"success"},{"item":"siesta","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sigmajs","response":"success"},{"item":"sigmund","response":"success"},{"item":"signal-exit","response":"success"},{"item":"signale","response":"success"},{"item":"signalfx","response":"success"},{"item":"signalr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"signalr-no-jquery","response":"success"},{"item":"signals","response":"success"},{"item":"signature_pad","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simmerjs","response":"success"},{"item":"simonwep__selection-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simpl-schema","response":"success"},{"item":"simple-assign","response":"success"},{"item":"simple-cw-node","response":"success"},{"item":"simple-icons","response":"success"},{"item":"simple-lru","response":"success"},{"item":"simple-mock","response":"success"},{"item":"simple-oauth2","response":"success"},{"item":"simple-peer","response":"success"},{"item":"simple-query-string","response":"success"},{"item":"simple-url-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simple-websocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simple-xml","response":"success"},{"item":"simplebar","response":"success"},{"item":"simplecrawler","response":"success"},{"item":"simplemde","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simplesmtp","response":"success"},{"item":"simplestorage.js","response":"success"},{"item":"simulant","response":"success"},{"item":"single-line-log","response":"success"},{"item":"single-spa-react","response":"success"},{"item":"sinon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sinon-as-promised","response":"success"},{"item":"sinon-chai","response":"success"},{"item":"sinon-chrome","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sinon-express-mock","response":"success"},{"item":"sinon-mongoose","response":"success"},{"item":"sinon-stub-promise","response":"success"},{"item":"sinon-test","response":"success"},{"item":"sinonjs__fake-timers","response":"success"},{"item":"sipml","response":"success"},{"item":"sitemap2","response":"success"},{"item":"six-runtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sizeof","response":"success"},{"item":"sizzle","response":"success"},{"item":"sjcl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"skatejs","response":"success"},{"item":"sketchapp","response":"success"},{"item":"ski","response":"success"},{"item":"skmeans","response":"success"},{"item":"skyway","response":"success"},{"item":"slack-mock","response":"success"},{"item":"slack-node","response":"success"},{"item":"slack-winston","response":"success"},{"item":"slackdown","response":"success"},{"item":"slackify-html","response":"success"},{"item":"slate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-base64-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-html-serializer","response":"success"},{"item":"slate-irc","response":"success"},{"item":"slate-plain-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slate-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sleep","response":"success"},{"item":"slice-ansi","response":"success"},{"item":"slick-carousel","response":"success"},{"item":"slickgrid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slideout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"slimerjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(431,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(432,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(433,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(434,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(435,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"sloc","response":"success"},{"item":"slocket","response":"success"},{"item":"slonik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"slug","response":"success"},{"item":"sm-crypto","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-fox-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-truncate","response":"success"},{"item":"smartwizard","response":"success"},{"item":"smooth-scroll","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"smoothscroll-polyfill","response":"success"},{"item":"smpte-timecode","response":"success"},{"item":"smshelper","response":"success"},{"item":"smtp-server","response":"success"},{"item":"smtpapi","response":"success"},{"item":"snakecase-keys","response":"success"},{"item":"snappy","response":"success"},{"item":"snapsvg","response":"success"},{"item":"snazzy-info-window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snekfetch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snowball-stemmers","response":"success"},{"item":"sns-validator","response":"success"},{"item":"sntp","response":"success"},{"item":"socket.io","response":"success"},{"item":"socket.io-client","response":"success"},{"item":"socket.io-emitter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"socket.io-file","response":"success"},{"item":"socket.io-p2p","response":"success"},{"item":"socket.io-parser","response":"success"},{"item":"socket.io-redis","response":"success"},{"item":"socket.io.users","response":"success"},{"item":"socketcluster","response":"success"},{"item":"socketcluster-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"socketcluster-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"socketio-jwt","response":"success"},{"item":"socketio-jwt-auth","response":"success"},{"item":"socketio-wildcard","response":"success"},{"item":"socketty","response":"success"},{"item":"sockjs","response":"success"},{"item":"sockjs-client","response":"success"},{"item":"sodium-native","response":"success"},{"item":"solid-auth-client","response":"success"},{"item":"solid__react","response":"success"},{"item":"solr-client","response":"success"},{"item":"solution-center-communicator","response":"success"},{"item":"sonic-boom","response":"success"},{"item":"sort-array","response":"success"},{"item":"sort-object-keys","response":"success"},{"item":"sortablejs","response":"success"},{"item":"sorted-object","response":"success"},{"item":"sortobject","response":"success"},{"item":"soundjs","response":"success"},{"item":"soundmanager2","response":"success"},{"item":"soupbintcp","response":"success"},{"item":"source-list-map","response":"success"},{"item":"source-map-support","response":"success"},{"item":"space-pen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"spark-md5","response":"success"},{"item":"sparkpost","response":"success"},{"item":"sparql-http-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"sparqljs","response":"success"},{"item":"sparse-bitfield","response":"success"},{"item":"spatialite","response":"success"},{"item":"spdx-correct","response":"success"},{"item":"spdx-satisfies","response":"success"},{"item":"spdy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"speakeasy","response":"success"},{"item":"speakingurl","response":"success"},{"item":"spected","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"spectrogram","response":"success"},{"item":"spectrum","response":"success"},{"item":"spellchecker","response":"success"},{"item":"split","response":"success"},{"item":"split.js","response":"success"},{"item":"split2","response":"success"},{"item":"splitpanes","response":"success"},{"item":"splunk-bunyan-logger","response":"success"},{"item":"splunk-logging","response":"success"},{"item":"spotify-api","response":"success"},{"item":"spotify-node-applescript","response":"success"},{"item":"spotify-web-api-node","response":"success"},{"item":"spotify-web-playback-sdk","response":"success"},{"item":"sprintf","response":"success"},{"item":"sprintf-js","response":"success"},{"item":"sql-bricks","response":"success"},{"item":"sql-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sql-template","response":"success"},{"item":"sql.js","response":"success"},{"item":"sqlanywhere","response":"success"},{"item":"sqlite3","response":"success"},{"item":"sqlite3-promise","response":"success"},{"item":"sqlstring","response":"success"},{"item":"sqs-producer","response":"success"},{"item":"square-connect","response":"success"},{"item":"squirejs","response":"success"},{"item":"squirrelly","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"srp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"ssb-keys","response":"success"},{"item":"ssdeep","response":"success"},{"item":"ssh-key-decrypt","response":"success"},{"item":"ssh2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ssh2-sftp-client","response":"success"},{"item":"ssh2-streams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sshpk","response":"success"},{"item":"ssri","response":"success"},{"item":"stack-mapper","response":"success"},{"item":"stack-trace","response":"success"},{"item":"stack-utils","response":"success"},{"item":"stale-lru-cache","response":"success"},{"item":"stampit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"stamplay-js-sdk","response":"success"},{"item":"standard-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"standard-error","response":"success"},{"item":"standard-http-error","response":"success"},{"item":"standard-version","response":"success"},{"item":"start-server-webpack-plugin","response":"success"},{"item":"starwars-names","response":"success"},{"item":"stat-mode","response":"success"},{"item":"static-eval","response":"success"},{"item":"staticmaps","response":"success"},{"item":"stats-lite","response":"success"},{"item":"stats.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"statsd-client","response":"success"},{"item":"statuses","response":"success"},{"item":"std-mocks","response":"success"},{"item":"stdin","response":"success"},{"item":"stdout-stream","response":"success"},{"item":"steam","response":"success"},{"item":"steam-client","response":"success"},{"item":"steam-login","response":"success"},{"item":"steam-totp","response":"success"},{"item":"steamid","response":"success"},{"item":"steed","response":"success"},{"item":"stemmer","response":"success"},{"item":"sticky-cluster","response":"success"},{"item":"sticky-session","response":"success"},{"item":"stompit","response":"success"},{"item":"stompjs","response":"success"},{"item":"stoppable","response":"success"},{"item":"stopword","response":"success"},{"item":"storage-helper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"store","response":"success"},{"item":"storybook-addon-jsx","response":"success"},{"item":"storybook-react-router","response":"success"},{"item":"storybook-readme","response":"success"},{"item":"storybook__addon-info","response":"success"},{"item":"storybook__polymer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"strange","response":"success"},{"item":"stream-array","response":"success"},{"item":"stream-buffers","response":"success"},{"item":"stream-chain","response":"success"},{"item":"stream-csv-as-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-demux","response":"success"},{"item":"stream-each","response":"success"},{"item":"stream-fork","response":"success"},{"item":"stream-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-meter","response":"success"},{"item":"stream-series","response":"success"},{"item":"stream-shift","response":"success"},{"item":"stream-throttle","response":"success"},{"item":"stream-to-array","response":"success"},{"item":"stream-to-promise","response":"success"},{"item":"stream-to-string","response":"success"},{"item":"streaming-json-stringify","response":"success"},{"item":"streamjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"streamtest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stremio-addon-sdk","response":"success"},{"item":"strftime","response":"success"},{"item":"strict-uri-encode","response":"success"},{"item":"strikeentco__get","response":"success"},{"item":"string","response":"success"},{"item":"string-format","response":"success"},{"item":"string-hash","response":"success"},{"item":"string-pixel-width","response":"success"},{"item":"string-placeholder","response":"success"},{"item":"string-replace-webpack-plugin","response":"success"},{"item":"string-similarity","response":"success"},{"item":"string-strip-html","response":"success"},{"item":"string-template","response":"success"},{"item":"string_score","response":"success"},{"item":"stringify-object","response":"success"},{"item":"strip-color","response":"success"},{"item":"stripe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripe-checkout","response":"success"},{"item":"stripe-v2","response":"success"},{"item":"stripe-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripejs","response":"success"},{"item":"strman","response":"success"},{"item":"strong-cluster-control","response":"success"},{"item":"strong-error-handler","response":"success"},{"item":"strong-log-transformer","response":"success"},{"item":"strophe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophe.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophejs-plugin-roster","response":"success"},{"item":"struct","response":"success"},{"item":"structured-source","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"stubby","response":"success"},{"item":"style-search","response":"success"},{"item":"styled-components","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"styled-jsx","response":"success"},{"item":"styled-react-modal","response":"success"},{"item":"styled-system","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styled-system__css","response":"success"},{"item":"styled-system__should-forward-prop","response":"success"},{"item":"styled-system__theme-get","response":"success"},{"item":"styled-theming","response":"success"},{"item":"stylelint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stylelint-webpack-plugin","response":"success"},{"item":"stylenames","response":"success"},{"item":"styletron-engine-atomic","response":"success"},{"item":"styletron-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styletron-standard","response":"success"},{"item":"stylus","response":"success"},{"item":"subleveldown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"subscribe-ui-event","response":"success"},{"item":"subtitle","response":"success"},{"item":"succinct","response":"success"},{"item":"sudokus","response":"success"},{"item":"suitescript","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"summernote","response":"success"},{"item":"sumo-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"suncalc","response":"success"},{"item":"sunrise-sunset-js","response":"success"},{"item":"superagent","response":"success"},{"item":"superagent-bunyan","response":"success"},{"item":"superagent-no-cache","response":"success"},{"item":"superagent-prefix","response":"success"},{"item":"superagent-proxy","response":"success"},{"item":"supercluster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"supertest","response":"success"},{"item":"supertest-as-promised","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"supports-color","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svg-injector","response":"success"},{"item":"svg-intersections","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"svg-parser","response":"success"},{"item":"svg-path-bounding-box","response":"success"},{"item":"svg-path-parser","response":"success"},{"item":"svg-sprite","response":"success"},{"item":"svg-sprite-loader","response":"success"},{"item":"svg2png","response":"success"},{"item":"svg4everybody","response":"success"},{"item":"svgjs.draggable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svgjs.resize","response":"success"},{"item":"svgo","response":"success"},{"item":"svgr__rollup","response":"success"},{"item":"sw-precache","response":"success"},{"item":"sw-precache-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"swag","response":"success"},{"item":"swagger-express-middleware","response":"success"},{"item":"swagger-express-mw","response":"success"},{"item":"swagger-express-validator","response":"success"},{"item":"swagger-hapi","response":"success"},{"item":"swagger-jsdoc","response":"success"},{"item":"swagger-node-runner","response":"success"},{"item":"swagger-restify-mw","response":"success"},{"item":"swagger-sails-hook","response":"success"},{"item":"swagger-schema-official","response":"success"},{"item":"swagger-stats","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swagger-tools","response":"success"},{"item":"swagger-ui-dist","response":"success"},{"item":"swagger-ui-express","response":"success"},{"item":"swagger-ui-react","response":"success"},{"item":"swaggerize-express","response":"success"},{"item":"swe-validation","response":"success"},{"item":"swfobject","response":"success"},{"item":"swiftclick","response":"success"},{"item":"swig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swig-email-templates","response":"success"},{"item":"swipe","response":"success"},{"item":"swiper","response":"success"},{"item":"swipeview","response":"success"},{"item":"switchery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"swiz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sybase-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"sylvester","response":"success"},{"item":"sylvester-es6","response":"success"},{"item":"symbol-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"symlink-or-copy","response":"success"},{"item":"synaptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"syntax-error","response":"success"},{"item":"syslog-client","response":"success"},{"item":"systemjs","response":"success"},{"item":"tabbable","response":"success"},{"item":"table","response":"success"},{"item":"table-resolver","response":"success"},{"item":"tableau","response":"success"},{"item":"tableify","response":"success"},{"item":"tablesorter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"tabtab","response":"success"},{"item":"tabulator","response":"success"},{"item":"tabulator-tables","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"tail","response":"success"},{"item":"tampermonkey","response":"success"},{"item":"tapable","response":"success"},{"item":"tape","response":"success"},{"item":"tape-async","response":"success"},{"item":"tape-catch","response":"success"},{"item":"tape-promise","response":"success"},{"item":"tar","response":"success"},{"item":"tar-fs","response":"success"},{"item":"tar-stream","response":"success"},{"item":"tarantool-driver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"targz","response":"success"},{"item":"task-graph-runner","response":"success"},{"item":"task-worklet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"tcp-ping","response":"success"},{"item":"tcp-port-used","response":"success"},{"item":"tdweb","response":"success"},{"item":"tea-merge","response":"success"},{"item":"teddy","response":"success"},{"item":"tedious","response":"success"},{"item":"tedious-connection-pool","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"teechart","response":"success"},{"item":"telebot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"temp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"temp-fs","response":"success"},{"item":"terminal-kit","response":"success"},{"item":"terminal-menu","response":"success"},{"item":"tern","response":"success"},{"item":"terser-webpack-plugin","response":"success"},{"item":"teslajs","response":"success"},{"item":"tesseract.js","response":"success"},{"item":"test-console","response":"success"},{"item":"test-listen","response":"success"},{"item":"testing-library__cypress","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(23,31): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(44,86): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(57,89): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(70,85): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(83,88): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(96,83): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(109,86): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(122,82): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(135,85): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(148,88): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(161,91): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(174,87): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(187,90): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(200,78): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(213,81): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(226,77): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(239,80): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(252,77): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(265,80): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(278,76): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(291,79): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(304,76): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(317,79): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(330,75): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(343,78): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(356,83): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(369,86): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(382,82): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(395,85): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(408,74): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(421,77): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(434,73): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(447,76): error TS2304: Cannot find name 'JQuery'.\n"},{"item":"testing-library__dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"testing-library__jest-dom","response":"success"},{"item":"testing-library__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"testing-library__react-hooks","response":"success"},{"item":"testing-library__user-event","response":"success"},{"item":"testing-library__vue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"testingbot-api","response":"success"},{"item":"tether","response":"success"},{"item":"tether-drop","response":"success"},{"item":"tether-shepherd","response":"success"},{"item":"text-buffer","response":"success"},{"item":"text-encoding","response":"success"},{"item":"text-encoding-utf-8","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"text-mask-addons","response":"success"},{"item":"text-mask-core","response":"success"},{"item":"text-table","response":"success"},{"item":"textarea-caret","response":"success"},{"item":"textextensions","response":"success"},{"item":"textract","response":"success"},{"item":"textversionjs","response":"success"},{"item":"texzilla","response":"success"},{"item":"tgfancy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"theme-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"theme-ui__components","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"then-eos","response":"success"},{"item":"theo","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"thepiratebay","response":"success"},{"item":"three-tds-loader","response":"success"},{"item":"thrift","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"throng","response":"success"},{"item":"throttle","response":"success"},{"item":"throttle-debounce","response":"success"},{"item":"throttleit","response":"success"},{"item":"through","response":"success"},{"item":"through2","response":"success"},{"item":"through2-concurrent","response":"success"},{"item":"through2-map","response":"success"},{"item":"tictactoejs","response":"success"},{"item":"tile-reduce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"tilebelt","response":"success"},{"item":"timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"timelinejs","response":"success"},{"item":"timelinejs3","response":"success"},{"item":"timer-machine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"timezone-js","response":"success"},{"item":"timezoned-date","response":"success"},{"item":"timing-safe-equal","response":"success"},{"item":"timsort","response":"success"},{"item":"tinajs__tina","response":"success"},{"item":"tinajs__tina-redux","response":"success"},{"item":"tinder","response":"success"},{"item":"tingle.js","response":"success"},{"item":"tiny-async-pool","response":"success"},{"item":"tiny-secp256k1","response":"success"},{"item":"tiny-slider-react","response":"success"},{"item":"tinycolor2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"tinycon","response":"success"},{"item":"tinycopy","response":"success"},{"item":"tinymce","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"titanium","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/titanium/index.d.ts(1156,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"title","response":"success"},{"item":"tldjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"tlds","response":"success"},{"item":"tlf-log","response":"success"},{"item":"tmi.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"tmp","response":"success"},{"item":"to-absolute-glob","response":"success"},{"item":"to-camel-case","response":"success"},{"item":"to-json-schema","response":"success"},{"item":"to-markdown","response":"success"},{"item":"to-slug-case","response":"success"},{"item":"to-snake-case","response":"success"},{"item":"to-space-case","response":"success"},{"item":"to-title-case","response":"success"},{"item":"to-title-case-gouch","response":"success"},{"item":"toastr","response":"success"},{"item":"tocktimer","response":"success"},{"item":"tokenizr","response":"success"},{"item":"tokgen","response":"success"},{"item":"toobusy-js","response":"success"},{"item":"tooltipster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"topo","response":"success"},{"item":"topojson","response":"success"},{"item":"topojson-client","response":"success"},{"item":"topojson-server","response":"success"},{"item":"topojson-simplify","response":"success"},{"item":"topojson-specification","response":"success"},{"item":"toposort","response":"success"},{"item":"torrent-search-api","response":"success"},{"item":"torrent-stream","response":"success"},{"item":"touch","response":"success"},{"item":"touch-events","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/touch-events"},{"item":"tough-cookie","response":"success"},{"item":"tough-cookie-file-store","response":"success"},{"item":"tough-cookie-filestore","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property '0' of undefined\n"},{"item":"traceback","response":"success"},{"item":"tracking","response":"success"},{"item":"transducers-js","response":"success"},{"item":"transducers.js","response":"success"},{"item":"trashable","response":"success"},{"item":"traverse","response":"success"},{"item":"traverson","response":"success"},{"item":"travis-fold","response":"success"},{"item":"trayballoon","response":"success"},{"item":"treeify","response":"success"},{"item":"tress","response":"success"},{"item":"trezor-connect","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"trianglify","response":"success"},{"item":"trie-prefix-tree","response":"success"},{"item":"trim","response":"success"},{"item":"triple-beam","response":"success"},{"item":"triplesec","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"trouter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property '0' of undefined\n"},{"item":"truffle-privatekey-provider","response":"success"},{"item":"truncate-middle","response":"success"},{"item":"trunk8","response":"success"},{"item":"trusted-types","response":"success"},{"item":"tryer","response":"success"},{"item":"tryghost__content-api","response":"success"},{"item":"ts-nameof","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"tsc-watch","response":"success"},{"item":"tspromise","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"tsscmp","response":"success"},{"item":"ttf2woff2","response":"success"},{"item":"tti-polyfill","response":"success"},{"item":"tunnel","response":"success"},{"item":"tunnel-ssh","response":"success"},{"item":"turbolinks","response":"success"},{"item":"turbostatus","response":"success"},{"item":"turndown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"tus-js-client","response":"success"},{"item":"tv4","response":"success"},{"item":"tween.js","response":"success"},{"item":"tweenjs","response":"success"},{"item":"tweezer.js","response":"success"},{"item":"twemoji","response":"success"},{"item":"twig","response":"success"},{"item":"twilio","response":"success"},{"item":"twilio-common","response":"success"},{"item":"twilio-video","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"twit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"twitch-ext","response":"success"},{"item":"twitter","response":"success"},{"item":"twitter-for-web","response":"success"},{"item":"twitter-stream-channels","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"twitter-text","response":"success"},{"item":"twix","response":"success"},{"item":"two.js","response":"success"},{"item":"type-check","response":"success"},{"item":"type-detect","response":"success"},{"item":"type-is","response":"success"},{"item":"type-name","response":"success"},{"item":"typeahead","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"typedarray-pool","response":"success"},{"item":"typeof","response":"success"},{"item":"typescript-deferred","response":"success"},{"item":"typography","response":"success"},{"item":"typography-breakpoint-constants","response":"success"},{"item":"typpy","response":"success"},{"item":"tz-format","response":"success"},{"item":"tz-lookup","response":"success"},{"item":"tz-offset","response":"success"},{"item":"ua-parser-js","response":"success"},{"item":"uglify-es","response":"success"},{"item":"uglify-js","response":"success"},{"item":"uglifycss","response":"success"},{"item":"uglifyjs-webpack-plugin","response":"success"},{"item":"ui-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"ui-router-extras","response":"success"},{"item":"ui-select","response":"success"},{"item":"uid-generator","response":"success"},{"item":"uid-safe","response":"success"},{"item":"uid2","response":"success"},{"item":"uikit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"uinput","response":"success"},{"item":"uint32","response":"success"},{"item":"ultra-strftime","response":"success"},{"item":"umbraco","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"umd","response":"success"},{"item":"umzug","response":"success"},{"item":"unc-path-regex","response":"success"},{"item":"underscore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"underscore-ko","response":"success"},{"item":"underscore.string","response":"success"},{"item":"undertaker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"undertaker-registry","response":"success"},{"item":"ungap__create-content","response":"success"},{"item":"ungap__global-this","response":"success"},{"item":"ungap__url-search-params","response":"success"},{"item":"ungap__weakmap","response":"success"},{"item":"uni-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/uni-app"},{"item":"unidecode","response":"success"},{"item":"uniq","response":"success"},{"item":"uniqid","response":"success"},{"item":"unique-hash-stream","response":"success"},{"item":"unique-push-id","response":"success"},{"item":"unist","response":"success"},{"item":"unity-webapi","response":"success"},{"item":"universal-analytics","response":"success"},{"item":"universal-cookie","response":"success"},{"item":"universalify","response":"success"},{"item":"unl-core","response":"success"},{"item":"unorm","response":"success"},{"item":"unsplash-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"unused-files-webpack-plugin","response":"success"},{"item":"unzip","response":"success"},{"item":"unzipper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"update-notifier","response":"success"},{"item":"uploadcare","response":"success"},{"item":"upng-js","response":"success"},{"item":"uppercamelcase","response":"success"},{"item":"urbanairship-cordova","response":"success"},{"item":"uri-template-lite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"uri-templates","response":"success"},{"item":"urijs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"uritemplate","response":"success"},{"item":"urix","response":"success"},{"item":"url-assembler","response":"success"},{"item":"url-join","response":"success"},{"item":"url-metadata","response":"success"},{"item":"url-params","response":"success"},{"item":"url-parse","response":"success"},{"item":"url-safe-base64","response":"success"},{"item":"url-search-params","response":"success"},{"item":"url-template","response":"success"},{"item":"urlencode","response":"success"},{"item":"urlparser","response":"success"},{"item":"urlrouter","response":"success"},{"item":"urlsafe-base64","response":"success"},{"item":"usage","response":"success"},{"item":"usb","response":"success"},{"item":"use-combined-reducers","response":"success"},{"item":"use-deep-compare-effect","response":"success"},{"item":"use-global-hook","response":"success"},{"item":"use-persisted-state","response":"success"},{"item":"use-position","response":"success"},{"item":"use-resize-observer","response":"success"},{"item":"use-set-interval","response":"success"},{"item":"use-set-timeout","response":"success"},{"item":"use-subscription","response":"success"},{"item":"user-agents","response":"success"},{"item":"user-event","response":"success"},{"item":"user-home","response":"success"},{"item":"useragent","response":"success"},{"item":"username","response":"success"},{"item":"uslug","response":"success"},{"item":"utf8","response":"success"},{"item":"utif","response":"success"},{"item":"util-deprecate","response":"success"},{"item":"util.promisify","response":"success"},{"item":"utils-merge","response":"success"},{"item":"utm","response":"success"},{"item":"uuid","response":"success"},{"item":"uuid-1345","response":"success"},{"item":"uuid-apikey","response":"success"},{"item":"uuid-js","response":"success"},{"item":"uuid-parse","response":"success"},{"item":"uuid-validate","response":"success"},{"item":"uws","response":"success"},{"item":"v-chart-plugin","response":"success"},{"item":"v8-profiler","response":"success"},{"item":"v8flags","response":"success"},{"item":"valdr","response":"success"},{"item":"valdr-message","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"valerie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vali-date","response":"success"},{"item":"valiant","response":"success"},{"item":"valid-data-url","response":"success"},{"item":"valid-url","response":"success"},{"item":"validate-npm-package-name","response":"success"},{"item":"validator","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"validatorjs","response":"success"},{"item":"vanilla-masker","response":"success"},{"item":"vanilla-modal","response":"success"},{"item":"vara","response":"success"},{"item":"varint","response":"success"},{"item":"vary","response":"success"},{"item":"vast-client","response":"success"},{"item":"vault-auth-aws","response":"success"},{"item":"vcards-js","response":"success"},{"item":"vcf","response":"success"},{"item":"vec2","response":"success"},{"item":"vec3","response":"success"},{"item":"vectorious","response":"success"},{"item":"venn","response":"success"},{"item":"verror","response":"success"},{"item":"vertx3-eventbus-client","response":"success"},{"item":"vex-js","response":"success"},{"item":"vexflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vfile-location","response":"success"},{"item":"vhost","response":"success"},{"item":"victor","response":"success"},{"item":"victory","response":"success"},{"item":"video.js","response":"success"},{"item":"viewability-helper","response":"success"},{"item":"viewport-list","response":"success"},{"item":"viewport-mercator-project","response":"success"},{"item":"viewporter","response":"success"},{"item":"vigour-ua","response":"success"},{"item":"vimeo","response":"success"},{"item":"vimeo__player","response":"success"},{"item":"vinyl","response":"success"},{"item":"vinyl-buffer","response":"success"},{"item":"vinyl-fs","response":"success"},{"item":"vinyl-paths","response":"success"},{"item":"vinyl-source-stream","response":"success"},{"item":"virtual-dom","response":"success"},{"item":"virtual-keyboard","response":"success"},{"item":"vis","response":"success"},{"item":"vision","response":"success"},{"item":"vitalsigns","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"vivus","response":"success"},{"item":"vkbeautify","response":"success"},{"item":"vmap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"vndb","response":"success"},{"item":"vnu-jar","response":"success"},{"item":"voca","response":"success"},{"item":"void-elements","response":"success"},{"item":"voronoi-diagram","response":"success"},{"item":"vorpal","response":"success"},{"item":"vortex-web-client","response":"success"},{"item":"voucher-code-generator","response":"success"},{"item":"voximplant-websdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vscode","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vscode-windows-registry","response":"success"},{"item":"vssln-parser","response":"success"},{"item":"vue-chartkick","response":"success"},{"item":"vue-clickaway","response":"success"},{"item":"vue-color","response":"success"},{"item":"vue-datetime","response":"success"},{"item":"vue-feather-icons","response":"success"},{"item":"vue-ls","response":"success"},{"item":"vue-markdown","response":"success"},{"item":"vue-moment","response":"success"},{"item":"vue-select","response":"success"},{"item":"vue-splitpane","response":"success"},{"item":"vue-tel-input","response":"success"},{"item":"vue-the-mask","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"vue2-datepicker","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vue2-editor","response":"success"},{"item":"vue2-hammer","response":"success"},{"item":"vuedraggable","response":"success"},{"item":"vuelidate","response":"success"},{"item":"w2ui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"w3c-gamepad","response":"success"},{"item":"w3c-generic-sensor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'statements' of undefined\n"},{"item":"w3c-image-capture","response":"success"},{"item":"w3c-screen-orientation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'statements' of undefined\n"},{"item":"w3c-web-usb","response":"success"},{"item":"w3c-xmlserializer","response":"success"},{"item":"wait-on","response":"success"},{"item":"wait-promise","response":"success"},{"item":"waitme","response":"success"},{"item":"wake_on_lan","response":"success"},{"item":"walk","response":"success"},{"item":"wallabyjs","response":"success"},{"item":"wallop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"wampy","response":"success"},{"item":"wanakana","response":"success"},{"item":"warning","response":"success"},{"item":"watch","response":"success"},{"item":"watchify","response":"success"},{"item":"watchpack","response":"success"},{"item":"waterline","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"wav","response":"success"},{"item":"wav-encoder","response":"success"},{"item":"wavesurfer.js","response":"success"},{"item":"waypoints","response":"success"},{"item":"wcag-contrast","response":"success"},{"item":"wcwidth","response":"success"},{"item":"weak","response":"success"},{"item":"weak-napi","response":"success"},{"item":"weapp-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"web-animations-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'statements' of undefined\n"},{"item":"web-bluetooth","response":"success"},{"item":"web-locks-api","response":"success"},{"item":"web-push","response":"success"},{"item":"web-resource-inliner","response":"success"},{"item":"web3-provider-engine","response":"success"},{"item":"webappsec-credential-management","response":"success"},{"item":"webassembly-web-api","response":"success"},{"item":"webcl","response":"success"},{"item":"webcomponents.js","response":"success"},{"item":"webcrypto","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/webcrypto"},{"item":"webfontloader","response":"success"},{"item":"webgl-ext","response":"success"},{"item":"webgl2","response":"success"},{"item":"webicon","response":"success"},{"item":"webidl-conversions","response":"success"},{"item":"webidl2","response":"success"},{"item":"webidl2js","response":"success"},{"item":"webmidi","response":"success"},{"item":"webpack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n"},{"item":"webpack-assets-manifest","response":"success"},{"item":"webpack-blocks","response":"success"},{"item":"webpack-blocks__assets","response":"success"},{"item":"webpack-blocks__babel","response":"success"},{"item":"webpack-blocks__core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"webpack-blocks__dev-server","response":"success"},{"item":"webpack-blocks__extract-text","response":"success"},{"item":"webpack-blocks__postcss","response":"success"},{"item":"webpack-blocks__sass","response":"success"},{"item":"webpack-blocks__typescript","response":"success"},{"item":"webpack-blocks__uglify","response":"success"},{"item":"webpack-blocks__webpack","response":"success"},{"item":"webpack-bugsnag-plugins","response":"success"},{"item":"webpack-bundle-analyzer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"webpack-chunk-hash","response":"success"},{"item":"webpack-cleanup-plugin","response":"success"},{"item":"webpack-concat-plugin","response":"success"},{"item":"webpack-config-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"webpack-dev-middleware","response":"success"},{"item":"webpack-dev-server","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"webpack-dotenv-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"webpack-env","response":"success"},{"item":"webpack-error-notification","response":"success"},{"item":"webpack-fail-plugin","response":"success"},{"item":"webpack-hot-client","response":"success"},{"item":"webpack-hot-middleware","response":"success"},{"item":"webpack-manifest-plugin","response":"success"},{"item":"webpack-merge","response":"success"},{"item":"webpack-node-externals","response":"success"},{"item":"webpack-notifier","response":"success"},{"item":"webpack-plugin-serve","response":"success"},{"item":"webpack-serve","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"webpack-sources","response":"success"},{"item":"webpack-stream","response":"success"},{"item":"webpack-subresource-integrity","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"webpack-validator","response":"success"},{"item":"webpack-virtual-modules","response":"success"},{"item":"webpack-watched-glob-entries-plugin","response":"success"},{"item":"webpackbar","response":"success"},{"item":"webpagetest","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"webprogbase-console-view","response":"success"},{"item":"webrtc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/webrtc"},{"item":"webscopeio__react-textarea-autocomplete","response":"success"},{"item":"websequencediagrams","response":"success"},{"item":"website-scraper","response":"success"},{"item":"websocket","response":"success"},{"item":"websocket-async","response":"success"},{"item":"websql","response":"success"},{"item":"webtorrent","response":"success"},{"item":"webvr-api","response":"success"},{"item":"week","response":"success"},{"item":"wegame-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"weighted","response":"success"},{"item":"weighted-random-object","response":"success"},{"item":"weixin-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wellknown","response":"success"},{"item":"wepy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"wepy-redux","response":"success"},{"item":"whatwg-encoding","response":"success"},{"item":"whatwg-mimetype","response":"success"},{"item":"whatwg-url","response":"success"},{"item":"wheel","response":"success"},{"item":"when","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"when-dom-ready","response":"success"},{"item":"which","response":"success"},{"item":"which-pm-runs","response":"success"},{"item":"whitelist-object","response":"success"},{"item":"why-did-you-update","response":"success"},{"item":"wicg-mediasession","response":"success"},{"item":"wif","response":"success"},{"item":"wiiu","response":"success"},{"item":"wildstring","response":"success"},{"item":"window-or-global","response":"success"},{"item":"window-size","response":"success"},{"item":"windows-1251","response":"success"},{"item":"windows-foreground-love","response":"success"},{"item":"windows-mutex","response":"success"},{"item":"windows-process-tree","response":"success"},{"item":"windows-script-host","response":"success"},{"item":"windows-service","response":"success"},{"item":"winjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"wink-pos-tagger","response":"success"},{"item":"wink-tokenizer","response":"success"},{"item":"winreg","response":"success"},{"item":"winrt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"winrt-uwp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"winston-dynamodb","response":"success"},{"item":"winston-loggly-bulk","response":"success"},{"item":"winston-mail","response":"success"},{"item":"winston-syslog","response":"success"},{"item":"wiredep","response":"success"},{"item":"wiring-pi","response":"success"},{"item":"wix-style-react","response":"success"},{"item":"wnumb","response":"success"},{"item":"wonder.js","response":"success"}] \ No newline at end of file +[{"item":"7zip-min","response":"success"},{"item":"a-big-triangle","response":"success"},{"item":"a11y-dialog","response":"success"},{"item":"abbrev","response":"success"},{"item":"abs","response":"success"},{"item":"absolute","response":"success"},{"item":"abstract-leveldown","response":"success"},{"item":"acc-wizard","response":"success"},{"item":"accept","response":"success"},{"item":"accept-language-parser","response":"success"},{"item":"accepts","response":"success"},{"item":"accounting","response":"success"},{"item":"accurate-interval","response":"success"},{"item":"ace","response":"success"},{"item":"ace-diff","response":"success"},{"item":"acl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"acorn","response":"success"},{"item":"actioncable","response":"success"},{"item":"activedirectory2","response":"success"},{"item":"activestorage","response":"success"},{"item":"activex-access","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-adox","response":"success"},{"item":"activex-dao","response":"success"},{"item":"activex-diskquota","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-excel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-faxcomexlib","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-infopath","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-interop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-iwshruntimelibrary","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"activex-libreoffice","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-msforms","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-mshtml","response":"success"},{"item":"activex-msxml2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-office","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-outlook","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-powerpoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-scripting","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-shdocvw","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"activex-shell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-stdole","response":"success"},{"item":"activex-vbide","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-wia","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"activex-word","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"adal-angular","response":"success"},{"item":"add-zero","response":"success"},{"item":"add2home","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/add2home"},{"item":"adhan","response":"success"},{"item":"adlib","response":"success"},{"item":"adm-zip","response":"success"},{"item":"adone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aes-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aframe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ag-channel","response":"success"},{"item":"ag-simple-broker","response":"success"},{"item":"agenda","response":"success"},{"item":"agent-base","response":"success"},{"item":"agiledigital__mule-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"agilite","response":"success"},{"item":"agora-rtc-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"airbnb-prop-types","response":"success"},{"item":"airtable","response":"success"},{"item":"ajv-async","response":"success"},{"item":"ajv-errors","response":"success"},{"item":"ajv-keywords","response":"success"},{"item":"ajv-merge-patch","response":"success"},{"item":"ajv-pack","response":"success"},{"item":"akamai-edgeworkers","response":"success"},{"item":"akumina-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ale-url-parser","response":"success"},{"item":"alertify","response":"success"},{"item":"alex","response":"success"},{"item":"alexa-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"alexa-voice-service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"algebra.js","response":"success"},{"item":"algoliasearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"algoliasearch-helper","response":"success"},{"item":"ali-app","response":"success"},{"item":"ali-oss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"align-text","response":"success"},{"item":"alks-node","response":"success"},{"item":"all-the-package-names","response":"success"},{"item":"alloy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"allure-js-commons","response":"success"},{"item":"almost-equal","response":"success"},{"item":"alpha-bravo","response":"success"},{"item":"alt","response":"success"},{"item":"amap-js-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api"},{"item":"amap-js-api-arrival-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-autocomplete","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-city-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-control-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-district-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-driving","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geocoder","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-geolocation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-heatmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-indoor-map","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-line-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map-type","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-map3d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/amap-js-api-map3d"},{"item":"amap-js-api-overview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-place-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-riding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-scale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-station-search","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-tool-bar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-api-transfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amap-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amazon-cognito-auth-js","response":"success"},{"item":"amazon-connect-streams","response":"success"},{"item":"amazon-product-api","response":"success"},{"item":"amcharts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"amp","response":"success"},{"item":"amp-message","response":"success"},{"item":"amphtml-validator","response":"success"},{"item":"amplifier","response":"success"},{"item":"amplify","response":"success"},{"item":"amplify-deferred","response":"success"},{"item":"amplitude-js","response":"success"},{"item":"amqp","response":"success"},{"item":"amqp-connection-manager","response":"success"},{"item":"amqp-rpc","response":"success"},{"item":"amqplib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"analytics-node","response":"success"},{"item":"anchor-js","response":"success"},{"item":"angular","response":"success"},{"item":"angular-agility","response":"success"},{"item":"angular-animate","response":"success"},{"item":"angular-aria","response":"success"},{"item":"angular-block-ui","response":"success"},{"item":"angular-bootstrap-calendar","response":"success"},{"item":"angular-bootstrap-lightbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-breadcrumb","response":"success"},{"item":"angular-clipboard","response":"success"},{"item":"angular-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-cookies","response":"success"},{"item":"angular-deferred-bootstrap","response":"success"},{"item":"angular-desktop-notification","response":"success"},{"item":"angular-dialog-service","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-environment","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-es","response":"success"},{"item":"angular-feature-flags","response":"success"},{"item":"angular-file-saver","response":"success"},{"item":"angular-file-upload","response":"success"},{"item":"angular-formly","response":"success"},{"item":"angular-fullscreen","response":"success"},{"item":"angular-gettext","response":"success"},{"item":"angular-google-analytics","response":"success"},{"item":"angular-gridster","response":"success"},{"item":"angular-growl-v2","response":"success"},{"item":"angular-hotkeys","response":"success"},{"item":"angular-http-auth","response":"success"},{"item":"angular-httpi","response":"success"},{"item":"angular-idle","response":"success"},{"item":"angular-jwt","response":"success"},{"item":"angular-load","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-loading-bar","response":"success"},{"item":"angular-local-storage","response":"success"},{"item":"angular-localforage","response":"success"},{"item":"angular-locker","response":"success"},{"item":"angular-material","response":"success"},{"item":"angular-media-queries","response":"success"},{"item":"angular-meteor","response":"success"},{"item":"angular-mocks","response":"success"},{"item":"angular-modal","response":"success"},{"item":"angular-notifications","response":"success"},{"item":"angular-notify","response":"success"},{"item":"angular-oauth2","response":"success"},{"item":"angular-odata-resources","response":"success"},{"item":"angular-pdfjs-viewer","response":"success"},{"item":"angular-permission","response":"success"},{"item":"angular-promise-tracker","response":"success"},{"item":"angular-q-extras","response":"success"},{"item":"angular-q-spread","response":"success"},{"item":"angular-resource","response":"success"},{"item":"angular-route","response":"success"},{"item":"angular-sanitize","response":"success"},{"item":"angular-scenario","response":"success"},{"item":"angular-scroll","response":"success"},{"item":"angular-signalr-hub","response":"success"},{"item":"angular-spinner","response":"success"},{"item":"angular-storage","response":"success"},{"item":"angular-strap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"angular-toastr","response":"success"},{"item":"angular-toasty","response":"success"},{"item":"angular-tooltips","response":"success"},{"item":"angular-translate","response":"success"},{"item":"angular-ui-bootstrap","response":"success"},{"item":"angular-ui-notification","response":"success"},{"item":"angular-ui-router","response":"success"},{"item":"angular-ui-scroll","response":"success"},{"item":"angular-ui-sortable","response":"success"},{"item":"angular-ui-tree","response":"success"},{"item":"angular-websocket","response":"success"},{"item":"angular-wizard","response":"success"},{"item":"angular-xeditable","response":"success"},{"item":"angular.throttle","response":"success"},{"item":"angularfire","response":"success"},{"item":"angularlocalstorage","response":"success"},{"item":"angulartics","response":"success"},{"item":"animation-frame","response":"success"},{"item":"animejs","response":"success"},{"item":"annyang","response":"success"},{"item":"ansi","response":"success"},{"item":"ansi-escape-sequences","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ansi-styles","response":"success"},{"item":"ansicolors","response":"success"},{"item":"antlr4","response":"success"},{"item":"antlr4-autosuggest","response":"success"},{"item":"any-db","response":"success"},{"item":"any-db-transaction","response":"success"},{"item":"anymatch","response":"success"},{"item":"anyproxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"aos","response":"success"},{"item":"apex.js","response":"success"},{"item":"api-error-handler","response":"success"},{"item":"apicache","response":"success"},{"item":"apicalypse","response":"success"},{"item":"apigee-access","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apimocker","response":"success"},{"item":"apollo-codegen","response":"success"},{"item":"apollo-upload-client","response":"success"},{"item":"apostrophe","response":"success"},{"item":"app-module-path","response":"success"},{"item":"app-root-dir","response":"success"},{"item":"app-root-path","response":"success"},{"item":"appdmg","response":"success"},{"item":"append-query","response":"success"},{"item":"appframework","response":"success"},{"item":"apple-mapkit-js","response":"success"},{"item":"apple-music-api","response":"success"},{"item":"apple-signin-api","response":"success"},{"item":"applepayjs","response":"success"},{"item":"appletvjs","response":"success"},{"item":"applicationinsights-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"apptimize__apptimize-web-sdk","response":"success"},{"item":"aqb","response":"success"},{"item":"arangodb","response":"success"},{"item":"arbiter","response":"success"},{"item":"arcgis-js-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"arcgis-rest-api","response":"success"},{"item":"arcgis-to-geojson-utils","response":"success"},{"item":"architect","response":"success"},{"item":"archiver","response":"success"},{"item":"archy","response":"success"},{"item":"are-we-there-yet","response":"success"},{"item":"argon2-browser","response":"success"},{"item":"argparse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"args","response":"success"},{"item":"argv","response":"success"},{"item":"aria-query","response":"success"},{"item":"arr-diff","response":"success"},{"item":"arr-union","response":"success"},{"item":"array-binarysearch.closest","response":"success"},{"item":"array-find-index","response":"success"},{"item":"array-foreach","response":"success"},{"item":"array-initial","response":"success"},{"item":"array-sort","response":"success"},{"item":"array-unique","response":"success"},{"item":"array.from","response":"success"},{"item":"array.prototype.flat","response":"success"},{"item":"array.prototype.flatmap","response":"success"},{"item":"artillery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'find' of undefined\n"},{"item":"asana","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asap","response":"success"},{"item":"ascii-art","response":"success"},{"item":"ascii2mathml","response":"success"},{"item":"asciichart","response":"success"},{"item":"asciify","response":"success"},{"item":"asenv","response":"success"},{"item":"asn1","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"asn1js","response":"success"},{"item":"aspnet-identity-pw","response":"success"},{"item":"assert","response":"success"},{"item":"assert-equal-jsx","response":"success"},{"item":"assert-plus","response":"success"},{"item":"assertsharp","response":"success"},{"item":"assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n"},{"item":"astring","response":"success"},{"item":"async","response":"success"},{"item":"async-busboy","response":"success"},{"item":"async-cache","response":"success"},{"item":"async-eventemitter","response":"success"},{"item":"async-iterable-stream","response":"success"},{"item":"async-lock","response":"success"},{"item":"async-polling","response":"success"},{"item":"async-retry","response":"success"},{"item":"async-stream-emitter","response":"success"},{"item":"async-stream-generator","response":"success"},{"item":"async-writer","response":"success"},{"item":"async.nexttick","response":"success"},{"item":"asynciterator","response":"success"},{"item":"athenajs","response":"success"},{"item":"atlaskit__button","response":"success"},{"item":"atlaskit__calendar","response":"success"},{"item":"atlaskit__feedback-collector","response":"success"},{"item":"atlaskit__inline-edit","response":"success"},{"item":"atlaskit__layer","response":"success"},{"item":"atlaskit__single-select","response":"success"},{"item":"atlaskit__tree","response":"success"},{"item":"atlassian-crowd-client","response":"success"},{"item":"atmosphere.js","response":"success"},{"item":"atob","response":"success"},{"item":"atob-lite","response":"success"},{"item":"atom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"atom-keymap","response":"success"},{"item":"atom-mocha-test-runner","response":"success"},{"item":"atpl","response":"success"},{"item":"audio-context","response":"success"},{"item":"audio-play","response":"success"},{"item":"audiobuffer-to-wav","response":"success"},{"item":"audiosprite","response":"success"},{"item":"auth-header","response":"success"},{"item":"auth0","response":"success"},{"item":"auth0-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"auth0-js","response":"success"},{"item":"auth0-lock","response":"success"},{"item":"auth0.widget","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"authenticator","response":"success"},{"item":"auto-launch","response":"success"},{"item":"auto-sni","response":"success"},{"item":"autobahn","response":"success"},{"item":"autocannon","response":"success"},{"item":"autoprefixer","response":"success"},{"item":"autoprefixer-core","response":"success"},{"item":"autosize","response":"success"},{"item":"autosuggest-highlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/autosuggest-highlight"},{"item":"avoscloud-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"await-timeout","response":"success"},{"item":"awesomplete","response":"success"},{"item":"aws-iot-device-sdk","response":"success"},{"item":"aws-lambda","response":"success"},{"item":"aws-param-store","response":"success"},{"item":"aws-regions","response":"success"},{"item":"aws-serverless-express","response":"success"},{"item":"aws4","response":"success"},{"item":"axe-webdriverjs","response":"success"},{"item":"axel","response":"success"},{"item":"axios-cancel","response":"success"},{"item":"axios-case-converter","response":"success"},{"item":"axios-curlirize","response":"success"},{"item":"axios-token-interceptor","response":"success"},{"item":"axon","response":"success"},{"item":"azdata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-kusto-data","response":"success"},{"item":"azure-mobile-services-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"azure-sb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"b-spline","response":"success"},{"item":"b2a","response":"success"},{"item":"b64-lite","response":"success"},{"item":"b_","response":"success"},{"item":"babel-code-frame","response":"success"},{"item":"babel-core","response":"success"},{"item":"babel-generator","response":"success"},{"item":"babel-plugin-macros","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-plugin-react-pug","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/babel-plugin-react-pug"},{"item":"babel-plugin-syntax-jsx","response":"success"},{"item":"babel-template","response":"success"},{"item":"babel-traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel-types","response":"success"},{"item":"babel-webpack-plugin","response":"success"},{"item":"babel__code-frame","response":"success"},{"item":"babel__core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babel__generator","response":"success"},{"item":"babel__standalone","response":"success"},{"item":"babel__template","response":"success"},{"item":"babel__traverse","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"babelify","response":"success"},{"item":"babylon","response":"success"},{"item":"babylon-walk","response":"success"},{"item":"babyparse","response":"success"},{"item":"backbone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"backbone-associations","response":"success"},{"item":"backbone-fetch-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone-relational","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.layoutmanager","response":"success"},{"item":"backbone.localstorage","response":"success"},{"item":"backbone.marionette","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backbone.paginator","response":"success"},{"item":"backbone.radio","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"backlog-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"backo2","response":"success"},{"item":"backoff","response":"success"},{"item":"backstopjs","response":"success"},{"item":"bagpipes","response":"success"},{"item":"baidu-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"baidumap-web-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/baidumap-web-sdk"},{"item":"balanced-match","response":"success"},{"item":"bandagedbd__bdapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"barbellweights","response":"success"},{"item":"barcode","response":"success"},{"item":"bardjs","response":"success"},{"item":"base-64","response":"success"},{"item":"base16","response":"success"},{"item":"base64-arraybuffer","response":"success"},{"item":"base64-async","response":"success"},{"item":"base64-js","response":"success"},{"item":"base64-stream","response":"success"},{"item":"base64-url","response":"success"},{"item":"base64topdf","response":"success"},{"item":"bases","response":"success"},{"item":"bash-glob","response":"success"},{"item":"basic-auth","response":"success"},{"item":"basicauth-middleware","response":"success"},{"item":"basiclightbox","response":"success"},{"item":"batch-stream","response":"success"},{"item":"battery-level","response":"success"},{"item":"bayes-classifier","response":"success"},{"item":"bazinga-translator","response":"success"},{"item":"bchaddrjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bcp-47","response":"success"},{"item":"bcp-47-match","response":"success"},{"item":"bcrypt","response":"success"},{"item":"bcrypt-nodejs","response":"success"},{"item":"bcryptjs","response":"success"},{"item":"bdfjs","response":"success"},{"item":"beanstalkd","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"beanstalkd-worker","response":"success"},{"item":"bearcat-es6","response":"success"},{"item":"beats","response":"success"},{"item":"bech32","response":"success"},{"item":"behavior3","response":"success"},{"item":"bell","response":"success"},{"item":"benchmark","response":"success"},{"item":"bencode","response":"success"},{"item":"bent","response":"success"},{"item":"better-curry","response":"success"},{"item":"better-queue","response":"success"},{"item":"better-scroll","response":"success"},{"item":"better-sqlite3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"bezier-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"bgiframe","response":"success"},{"item":"bidirectional-map","response":"success"},{"item":"big.js","response":"success"},{"item":"bigi","response":"success"},{"item":"bigint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/bigint/index.d.ts(9,19): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(21,11): error TS2300: Duplicate identifier 'BigInt'.\nnode_modules/typescript/lib/lib.es2020.bigint.d.ts(57,13): error TS2300: Duplicate identifier 'BigInt'.\n"},{"item":"bignum","response":"success"},{"item":"bigscreen","response":"success"},{"item":"bin-pack","response":"success"},{"item":"binary-parse-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"binary-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"binaryextensions","response":"success"},{"item":"bind-ponyfill","response":"success"},{"item":"bindings","response":"success"},{"item":"bintrees","response":"success"},{"item":"bip21","response":"success"},{"item":"bip38","response":"success"},{"item":"bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"bit-twiddle","response":"success"},{"item":"bitcore-lib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bittorrent-protocol","response":"success"},{"item":"bitwise-xor","response":"success"},{"item":"bl","response":"success"},{"item":"blacklist","response":"success"},{"item":"blake2","response":"success"},{"item":"blazor__javascript-interop","response":"success"},{"item":"blazy","response":"success"},{"item":"bleno","response":"success"},{"item":"blessed","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blip-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"blissfuljs","response":"success"},{"item":"blob-stream","response":"success"},{"item":"blob-to-buffer","response":"success"},{"item":"blocked","response":"success"},{"item":"blockies","response":"success"},{"item":"blocks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"bloem","response":"success"},{"item":"bloom-filter","response":"success"},{"item":"bloomfilter","response":"success"},{"item":"blue-tape","response":"success"},{"item":"bluebird","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"bluebird-global","response":"success"},{"item":"bluebird-retry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"blueimp-load-image","response":"success"},{"item":"blueimp-md5","response":"success"},{"item":"bmp-js","response":"success"},{"item":"bn.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"body-parser","response":"success"},{"item":"body-parser-xml","response":"success"},{"item":"body-scroll-lock","response":"success"},{"item":"bonjour","response":"success"},{"item":"bookshelf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"boolify-string","response":"success"},{"item":"boom","response":"success"},{"item":"bootbox","response":"success"},{"item":"bootpag","response":"success"},{"item":"bootstrap","response":"success"},{"item":"bootstrap-3-typeahead","response":"success"},{"item":"bootstrap-colorpicker","response":"success"},{"item":"bootstrap-datepicker","response":"success"},{"item":"bootstrap-fileinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"bootstrap-growl-ifightcrime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-maxlength","response":"success"},{"item":"bootstrap-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"bootstrap-notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"bootstrap-select","response":"success"},{"item":"bootstrap-slider","response":"success"},{"item":"bootstrap-switch","response":"success"},{"item":"bootstrap-toggle","response":"success"},{"item":"bootstrap-touchspin","response":"success"},{"item":"bootstrap-treeview","response":"success"},{"item":"bootstrap-validator","response":"success"},{"item":"bootstrap.paginator","response":"success"},{"item":"bootstrap.timepicker","response":"success"},{"item":"bootstrap.v3.datetimepicker","response":"success"},{"item":"bootstrap3-dialog","response":"success"},{"item":"bounce.js","response":"success"},{"item":"box-intersect","response":"success"},{"item":"box2d","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bpmn-moddle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"brace-expansion","response":"success"},{"item":"braces","response":"success"},{"item":"brainhubeu__react-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"braintree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"braintree-web","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"braintree-web-drop-in","response":"success"},{"item":"breeze","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"bresenham","response":"success"},{"item":"bricks.js","response":"success"},{"item":"bristol","response":"success"},{"item":"bristol-sentry","response":"success"},{"item":"bro-fs","response":"success"},{"item":"brorand","response":"success"},{"item":"brotli-webpack-plugin","response":"success"},{"item":"browser-bunyan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"browser-fingerprint","response":"success"},{"item":"browser-harness","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'kind' of undefined\n"},{"item":"browser-image-compression","response":"success"},{"item":"browser-or-node","response":"success"},{"item":"browser-pack","response":"success"},{"item":"browser-report","response":"success"},{"item":"browser-resolve","response":"success"},{"item":"browser-sync","response":"success"},{"item":"browser-sync-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"browserify","response":"success"},{"item":"browserslist","response":"success"},{"item":"browserslist-useragent","response":"success"},{"item":"bs58","response":"success"},{"item":"bser","response":"success"},{"item":"bson","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"btoa","response":"success"},{"item":"btoa-lite","response":"success"},{"item":"buble","response":"success"},{"item":"bucks","response":"success"},{"item":"buffer-compare","response":"success"},{"item":"buffer-crc32","response":"success"},{"item":"buffer-equal","response":"success"},{"item":"buffer-from","response":"success"},{"item":"buffer-reader","response":"success"},{"item":"buffer-split","response":"success"},{"item":"buffer-xor","response":"success"},{"item":"bufferhelper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"buffers","response":"success"},{"item":"bufferstream","response":"success"},{"item":"build-output-script","response":"success"},{"item":"bull","response":"success"},{"item":"bull-arena","response":"success"},{"item":"bull-board","response":"success"},{"item":"bulma-calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"bump-regex","response":"success"},{"item":"bunnymq","response":"success"},{"item":"bunyan","response":"success"},{"item":"bunyan-blackhole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"bunyan-config","response":"success"},{"item":"bunyan-format","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"bunyan-logentries","response":"success"},{"item":"bunyan-prettystream","response":"success"},{"item":"bunyan-seq","response":"success"},{"item":"bunyan-winston-adapter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"burns","response":"success"},{"item":"busboy","response":"success"},{"item":"business-rules-engine","response":"success"},{"item":"bwip-js","response":"success"},{"item":"byline","response":"success"},{"item":"byte-range","response":"success"},{"item":"bytebuffer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"bytes","response":"success"},{"item":"bytewise","response":"success"},{"item":"c3","response":"success"},{"item":"cacache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cache-manager","response":"success"},{"item":"cacheable-request","response":"success"},{"item":"cached-path-relative","response":"success"},{"item":"cadesplugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"cal-heatmap","response":"success"},{"item":"calendar","response":"success"},{"item":"calidation","response":"success"},{"item":"callback-to-async-iterator","response":"success"},{"item":"caller","response":"success"},{"item":"callsite","response":"success"},{"item":"calq","response":"success"},{"item":"camelcase-keys-deep","response":"success"},{"item":"camo","response":"success"},{"item":"camunda-external-task-client-js","response":"success"},{"item":"cancan","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"caniuse-api","response":"success"},{"item":"caniuse-lite","response":"success"},{"item":"cannon","response":"success"},{"item":"canvas-confetti","response":"success"},{"item":"canvas-gauges","response":"success"},{"item":"canvasjs","response":"success"},{"item":"canvaskit-wasm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"capitalize","response":"success"},{"item":"capture-console","response":"success"},{"item":"carbon-components-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"carbon__colors","response":"success"},{"item":"carbon__icon-helpers","response":"success"},{"item":"carbon__icons-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__layout","response":"success"},{"item":"carbon__motion","response":"success"},{"item":"carbon__pictograms-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"carbon__themes","response":"success"},{"item":"carbon__type","response":"success"},{"item":"carbone","response":"success"},{"item":"card-validator","response":"success"},{"item":"carlo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"case-sensitive-paths-webpack-plugin","response":"success"},{"item":"caseless","response":"success"},{"item":"cash","response":"success"},{"item":"cashaddrjs","response":"success"},{"item":"casperjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"cassandra-store","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"cassanknex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"catbox-memory","response":"success"},{"item":"catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"cavy","response":"success"},{"item":"cbor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ccap","response":"success"},{"item":"ccapture.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"center-align","response":"success"},{"item":"centra","response":"success"},{"item":"cesium","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cfenv","response":"success"},{"item":"cfn-response","response":"success"},{"item":"chai","response":"success"},{"item":"chai-almost","response":"success"},{"item":"chai-arrays","response":"success"},{"item":"chai-as-promised","response":"success"},{"item":"chai-datetime","response":"success"},{"item":"chai-dom","response":"success"},{"item":"chai-enzyme","response":"success"},{"item":"chai-fs","response":"success"},{"item":"chai-fuzzy","response":"success"},{"item":"chai-jest-snapshot","response":"success"},{"item":"chai-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"chai-json-schema","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"chai-like","response":"success"},{"item":"chai-moment","response":"success"},{"item":"chai-oequal","response":"success"},{"item":"chai-roughly","response":"success"},{"item":"chai-spies","response":"success"},{"item":"chai-string","response":"success"},{"item":"chai-style","response":"success"},{"item":"chai-subset","response":"success"},{"item":"chai-things","response":"success"},{"item":"chai-uuid","response":"success"},{"item":"chai-xml","response":"success"},{"item":"chalk-animation","response":"success"},{"item":"chalk-pipe","response":"success"},{"item":"chance","response":"success"},{"item":"change-case-object","response":"success"},{"item":"change-emitter","response":"success"},{"item":"changelog-parser","response":"success"},{"item":"chardet","response":"success"},{"item":"charm","response":"success"},{"item":"charset","response":"success"},{"item":"chart.js","response":"success"},{"item":"chartist","response":"success"},{"item":"chartmogul-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chayns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"check-error","response":"success"},{"item":"check-sum","response":"success"},{"item":"check-types","response":"success"},{"item":"checkstyle-formatter","response":"success"},{"item":"checksum","response":"success"},{"item":"cheerio","response":"success"},{"item":"chess.js","response":"success"},{"item":"chessboardjs","response":"success"},{"item":"child-process-promise","response":"success"},{"item":"chmodr","response":"success"},{"item":"chocolatechipjs","response":"success"},{"item":"chordsheetjs","response":"success"},{"item":"chosen-js","response":"success"},{"item":"chownr","response":"success"},{"item":"chroma-js","response":"success"},{"item":"chrome","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"chrome-apps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromecast-caf-receiver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"chromecast-caf-sender","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"chromedriver","response":"success"},{"item":"chui","response":"success"},{"item":"chunk","response":"success"},{"item":"chunk-text","response":"success"},{"item":"ci-info","response":"success"},{"item":"cipher-base","response":"success"},{"item":"circuit-breaker-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"circular-dependency-plugin","response":"success"},{"item":"circular-json","response":"success"},{"item":"ckeditor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ckeditor__ckeditor5-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clamp","response":"success"},{"item":"clamp-js","response":"success"},{"item":"clamp-js-main","response":"success"},{"item":"clarinet","response":"success"},{"item":"classnames","response":"success"},{"item":"cldrjs","response":"success"},{"item":"clean-css","response":"success"},{"item":"clean-git-ref","response":"success"},{"item":"clean-regexp","response":"success"},{"item":"clear","response":"success"},{"item":"clearbladejs-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"clearbladejs-node","response":"success"},{"item":"clearbladejs-server","response":"success"},{"item":"cleave.js","response":"success"},{"item":"cli","response":"success"},{"item":"cli-box","response":"success"},{"item":"cli-color","response":"success"},{"item":"cli-interact","response":"success"},{"item":"cli-progress","response":"success"},{"item":"cli-spinner","response":"success"},{"item":"cli-spinners","response":"success"},{"item":"cli-table","response":"success"},{"item":"cli-table2","response":"success"},{"item":"client-sessions","response":"success"},{"item":"clientjs","response":"success"},{"item":"cliff","response":"success"},{"item":"clipboard","response":"success"},{"item":"clipboard-js","response":"success"},{"item":"clmtrackr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"clndr","response":"success"},{"item":"clockpicker","response":"success"},{"item":"clone","response":"success"},{"item":"clone-deep","response":"success"},{"item":"cloneable-readable","response":"success"},{"item":"cloner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"closure-compiler","response":"success"},{"item":"cloud-config-client","response":"success"},{"item":"cloud-env","response":"success"},{"item":"cloudflare-apps","response":"success"},{"item":"clovelced-plugin-audiomanagement","response":"success"},{"item":"clownface","response":"success"},{"item":"cls-hooked","response":"success"},{"item":"clui","response":"success"},{"item":"clusterize.js","response":"success"},{"item":"cmd-shim","response":"success"},{"item":"cnpj","response":"success"},{"item":"co","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"co-body","response":"success"},{"item":"co-views","response":"success"},{"item":"code","response":"success"},{"item":"codeflask","response":"success"},{"item":"codegen.macro","response":"success"},{"item":"codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"codependency","response":"success"},{"item":"coffeeify","response":"success"},{"item":"coinbase","response":"success"},{"item":"coinbase-commerce-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"coinlist","response":"success"},{"item":"coinstring","response":"success"},{"item":"collections","response":"success"},{"item":"collectionsjs","response":"success"},{"item":"color","response":"success"},{"item":"color-check","response":"success"},{"item":"color-convert","response":"success"},{"item":"color-diff","response":"success"},{"item":"color-hash","response":"success"},{"item":"color-name","response":"success"},{"item":"color-namer","response":"success"},{"item":"color-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"color-support","response":"success"},{"item":"colorbrewer","response":"success"},{"item":"colornames","response":"success"},{"item":"colresizable","response":"success"},{"item":"columnify","response":"success"},{"item":"com.darktalker.cordova.screenshot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"com.wikitude.phonegap.wikitudeplugin","response":"success"},{"item":"combinations","response":"success"},{"item":"combine-reducers","response":"success"},{"item":"combine-source-map","response":"success"},{"item":"combined-stream","response":"success"},{"item":"combokeys","response":"success"},{"item":"cometd","response":"success"},{"item":"command-exists","response":"success"},{"item":"command-line-args","response":"success"},{"item":"command-line-commands","response":"success"},{"item":"command-line-usage","response":"success"},{"item":"commander-remaining-args","response":"success"},{"item":"commangular","response":"success"},{"item":"comment-json","response":"success"},{"item":"commercetools__enzyme-extensions","response":"success"},{"item":"commitlint__load","response":"success"},{"item":"common-errors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"common-prefix","response":"success"},{"item":"common-tags","response":"success"},{"item":"commondir","response":"success"},{"item":"commonmark","response":"success"},{"item":"compare-func","response":"success"},{"item":"compare-function","response":"success"},{"item":"compare-version","response":"success"},{"item":"compass-vertical-rhythm","response":"success"},{"item":"complex","response":"success"},{"item":"complex.js","response":"success"},{"item":"component-emitter","response":"success"},{"item":"compose-function","response":"success"},{"item":"compress.js","response":"success"},{"item":"compressible","response":"success"},{"item":"compression","response":"success"},{"item":"compression-webpack-plugin","response":"success"},{"item":"compute-argmax","response":"success"},{"item":"compute-quantile","response":"success"},{"item":"compute-stdev","response":"success"},{"item":"concat-map","response":"success"},{"item":"concat-stream","response":"success"},{"item":"concaveman","response":"success"},{"item":"concurrently","response":"success"},{"item":"conditional","response":"success"},{"item":"conductor-animate","response":"success"},{"item":"confidence","response":"success"},{"item":"config","response":"success"},{"item":"config-yaml","response":"success"},{"item":"configs-overload","response":"success"},{"item":"configstore","response":"success"},{"item":"configurable","response":"success"},{"item":"confit","response":"success"},{"item":"connect","response":"success"},{"item":"connect-azuretables","response":"success"},{"item":"connect-busboy","response":"success"},{"item":"connect-datadog","response":"success"},{"item":"connect-ensure-login","response":"success"},{"item":"connect-flash","response":"success"},{"item":"connect-history-api-fallback","response":"success"},{"item":"connect-history-api-fallback-exclusions","response":"success"},{"item":"connect-livereload","response":"success"},{"item":"connect-modrewrite","response":"success"},{"item":"connect-mongodb-session","response":"success"},{"item":"connect-pg-simple","response":"success"},{"item":"connect-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"connect-sequence","response":"success"},{"item":"connect-slashes","response":"success"},{"item":"connect-timeout","response":"success"},{"item":"connect-trim-body","response":"success"},{"item":"console-log-level","response":"success"},{"item":"console-stamp","response":"success"},{"item":"console-ui","response":"success"},{"item":"consolidate","response":"success"},{"item":"consul","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"consumable-stream","response":"success"},{"item":"contains-path","response":"success"},{"item":"content-disposition","response":"success"},{"item":"content-range","response":"success"},{"item":"content-type","response":"success"},{"item":"contentful-resolve-response","response":"success"},{"item":"contentstack","response":"success"},{"item":"contextjs","response":"success"},{"item":"continuation-local-storage","response":"success"},{"item":"contract-proxy-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"conventional-changelog","response":"success"},{"item":"conventional-changelog-config-spec","response":"success"},{"item":"conventional-changelog-core","response":"success"},{"item":"conventional-changelog-preset-loader","response":"success"},{"item":"conventional-changelog-writer","response":"success"},{"item":"conventional-commits-parser","response":"success"},{"item":"conventional-recommended-bump","response":"success"},{"item":"convert-layout","response":"success"},{"item":"convert-source-map","response":"success"},{"item":"convert-string","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"convert-units","response":"success"},{"item":"convict","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"cookie","response":"success"},{"item":"cookie-parser","response":"success"},{"item":"cookie-session","response":"success"},{"item":"cookie-signature","response":"success"},{"item":"cookie_js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"cookiejar","response":"success"},{"item":"cookies","response":"success"},{"item":"copy","response":"success"},{"item":"copy-paste","response":"success"},{"item":"copy-webpack-plugin","response":"success"},{"item":"copyfiles","response":"success"},{"item":"cordova","response":"success"},{"item":"cordova-ionic","response":"success"},{"item":"cordova-plugin-app-version","response":"success"},{"item":"cordova-plugin-background-mode","response":"success"},{"item":"cordova-plugin-badge","response":"success"},{"item":"cordova-plugin-ble-central","response":"success"},{"item":"cordova-plugin-bluetoothclassic-serial","response":"success"},{"item":"cordova-plugin-canvascamera","response":"success"},{"item":"cordova-plugin-device-name","response":"success"},{"item":"cordova-plugin-email-composer","response":"success"},{"item":"cordova-plugin-file-opener2","response":"success"},{"item":"cordova-plugin-ibeacon","response":"success"},{"item":"cordova-plugin-insomnia","response":"success"},{"item":"cordova-plugin-keyboard","response":"success"},{"item":"cordova-plugin-mapsforge","response":"success"},{"item":"cordova-plugin-ms-adal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cordova-plugin-native-keyboard","response":"success"},{"item":"cordova-plugin-ouralabs","response":"success"},{"item":"cordova-plugin-qrscanner","response":"success"},{"item":"cordova-plugin-spinner","response":"success"},{"item":"cordova-plugin-websql","response":"success"},{"item":"cordova-sqlite-storage","response":"success"},{"item":"cordova-universal-links-plugin","response":"success"},{"item":"cordova_app_version_plugin","response":"success"},{"item":"cordovarduino","response":"success"},{"item":"core-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"core-object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"correlation-id","response":"success"},{"item":"cors","response":"success"},{"item":"cote","response":"success"},{"item":"couchbase","response":"success"},{"item":"countdown","response":"success"},{"item":"counterpart","response":"success"},{"item":"countries-and-timezones","response":"success"},{"item":"country-data","response":"success"},{"item":"country-list","response":"success"},{"item":"country-select-js","response":"success"},{"item":"coverup","response":"success"},{"item":"cpx","response":"success"},{"item":"cqrs-domain","response":"success"},{"item":"cradle","response":"success"},{"item":"crc","response":"success"},{"item":"create-error","response":"success"},{"item":"create-hash","response":"success"},{"item":"create-hmac","response":"success"},{"item":"create-react-class","response":"success"},{"item":"create-subscription","response":"success"},{"item":"create-xpub","response":"success"},{"item":"createjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/createjs"},{"item":"createjs-lib","response":"success"},{"item":"credential","response":"success"},{"item":"credit-card-type","response":"success"},{"item":"critters-webpack-plugin","response":"success"},{"item":"cron","response":"success"},{"item":"cron-converter","response":"success"},{"item":"croppie","response":"success"},{"item":"cross-spawn","response":"success"},{"item":"cross-storage","response":"success"},{"item":"crossfilter","response":"success"},{"item":"crossroads","response":"success"},{"item":"crpc","response":"success"},{"item":"crumb","response":"success"},{"item":"cryptex","response":"success"},{"item":"cryptiles","response":"success"},{"item":"crypto-js","response":"success"},{"item":"cryptojs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cryptr","response":"success"},{"item":"cson","response":"success"},{"item":"csp-html-webpack-plugin","response":"success"},{"item":"csprng","response":"success"},{"item":"csrf","response":"success"},{"item":"css","response":"success"},{"item":"css-font-loading-module","response":"success"},{"item":"css-mediaquery","response":"success"},{"item":"css-modules","response":"success"},{"item":"css-modules-loader-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"css-modules-require-hook","response":"success"},{"item":"css-selector-tokenizer","response":"success"},{"item":"css-to-style","response":"success"},{"item":"css-tree","response":"success"},{"item":"cssbeautify","response":"success"},{"item":"cssesc","response":"success"},{"item":"cssnano","response":"success"},{"item":"csso","response":"success"},{"item":"csurf","response":"success"},{"item":"csv2json","response":"success"},{"item":"csvrow","response":"success"},{"item":"csvtojson","response":"success"},{"item":"cucumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cuid","response":"success"},{"item":"cuint","response":"success"},{"item":"currency-formatter","response":"success"},{"item":"current-git-branch","response":"success"},{"item":"cuss","response":"success"},{"item":"custom-error-generator","response":"success"},{"item":"custom-functions-runtime","response":"success"},{"item":"cwd","response":"success"},{"item":"cwise","response":"success"},{"item":"cwise-compiler","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"cwise-parser","response":"success"},{"item":"cyberblast__config","response":"success"},{"item":"cyberblast__logger","response":"success"},{"item":"cyberblast__webserver","response":"success"},{"item":"cybozulabs-md5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"cypress-axe","response":"success"},{"item":"cypress-cucumber-preprocessor","response":"success"},{"item":"cypress-image-snapshot","response":"success"},{"item":"cytoscape","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d","response":"success"},{"item":"d20","response":"success"},{"item":"d3","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"d3-array","response":"success"},{"item":"d3-axis","response":"success"},{"item":"d3-box","response":"success"},{"item":"d3-brush","response":"success"},{"item":"d3-chord","response":"success"},{"item":"d3-cloud","response":"success"},{"item":"d3-collection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"d3-color","response":"success"},{"item":"d3-contour","response":"success"},{"item":"d3-delaunay","response":"success"},{"item":"d3-dispatch","response":"success"},{"item":"d3-drag","response":"success"},{"item":"d3-dsv","response":"success"},{"item":"d3-ease","response":"success"},{"item":"d3-fetch","response":"success"},{"item":"d3-force","response":"success"},{"item":"d3-format","response":"success"},{"item":"d3-geo","response":"success"},{"item":"d3-graphviz","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-hexbin","response":"success"},{"item":"d3-hierarchy","response":"success"},{"item":"d3-hsv","response":"success"},{"item":"d3-interpolate","response":"success"},{"item":"d3-interpolate-path","response":"success"},{"item":"d3-path","response":"success"},{"item":"d3-polygon","response":"success"},{"item":"d3-quadtree","response":"success"},{"item":"d3-queue","response":"success"},{"item":"d3-random","response":"success"},{"item":"d3-request","response":"success"},{"item":"d3-require","response":"success"},{"item":"d3-sankey","response":"success"},{"item":"d3-scale","response":"success"},{"item":"d3-scale-chromatic","response":"success"},{"item":"d3-selection","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'length' of undefined\n"},{"item":"d3-selection-multi","response":"success"},{"item":"d3-shape","response":"success"},{"item":"d3-time","response":"success"},{"item":"d3-time-format","response":"success"},{"item":"d3-timer","response":"success"},{"item":"d3-tip","response":"success"},{"item":"d3-transition","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3-voronoi","response":"success"},{"item":"d3-zoom","response":"success"},{"item":"d3.slider","response":"success"},{"item":"d3kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"d3pie","response":"success"},{"item":"dagre","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-d3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dagre-layout","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dashify","response":"success"},{"item":"dat.gui","response":"success"},{"item":"data-driven","response":"success"},{"item":"datadog-metrics","response":"success"},{"item":"datadog-statsd-metrics-collector","response":"success"},{"item":"datadog-tracer","response":"success"},{"item":"datadog-winston","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"datastore-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"datastore-level","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"datatables.net","response":"success"},{"item":"datatables.net-autofill","response":"success"},{"item":"datatables.net-buttons","response":"success"},{"item":"datatables.net-colreorder","response":"success"},{"item":"datatables.net-fixedcolumns","response":"success"},{"item":"datatables.net-fixedheader","response":"success"},{"item":"datatables.net-keytable","response":"success"},{"item":"datatables.net-rowgroup","response":"success"},{"item":"datatables.net-rowreorder","response":"success"},{"item":"datatables.net-scroller","response":"success"},{"item":"datatables.net-select","response":"success"},{"item":"date-and-time","response":"success"},{"item":"date-arithmetic","response":"success"},{"item":"date-fp","response":"success"},{"item":"date-now","response":"success"},{"item":"date-range-array","response":"success"},{"item":"date-utils","response":"success"},{"item":"date.format.js","response":"success"},{"item":"dateformat","response":"success"},{"item":"datejs","response":"success"},{"item":"daterangepicker","response":"success"},{"item":"dav","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dayzed","response":"success"},{"item":"db-migrate-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db-migrate-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"db.js","response":"success"},{"item":"dbus","response":"success"},{"item":"dc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"deasync","response":"success"},{"item":"death","response":"success"},{"item":"debessmann","response":"success"},{"item":"debounce","response":"success"},{"item":"debounce-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"debug","response":"success"},{"item":"decay","response":"success"},{"item":"decode-entities","response":"success"},{"item":"decode-uri-component","response":"success"},{"item":"decomment","response":"success"},{"item":"decompress","response":"success"},{"item":"decorum","response":"success"},{"item":"dedent","response":"success"},{"item":"deep-assign","response":"success"},{"item":"deep-diff","response":"success"},{"item":"deep-equal","response":"success"},{"item":"deep-equal-in-any-order","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"deep-extend","response":"success"},{"item":"deep-freeze","response":"success"},{"item":"deep-freeze-strict","response":"success"},{"item":"deezer-sdk","response":"success"},{"item":"default-gateway","response":"success"},{"item":"defaults","response":"success"},{"item":"defaults-deep","response":"success"},{"item":"defer-promise","response":"success"},{"item":"define-properties","response":"success"},{"item":"defined","response":"success"},{"item":"deglob","response":"success"},{"item":"deindent","response":"success"},{"item":"deku","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"delaunator","response":"success"},{"item":"delete-empty","response":"success"},{"item":"deline","response":"success"},{"item":"deluge","response":"success"},{"item":"denodeify","response":"success"},{"item":"deoxxa-content-type","response":"success"},{"item":"depd","response":"success"},{"item":"dependency-tree","response":"success"},{"item":"deployjava","response":"success"},{"item":"deprecate","response":"success"},{"item":"deps-sort","response":"success"},{"item":"derhuerst__cli-on-key","response":"success"},{"item":"destroy","response":"success"},{"item":"destroy-on-hwm","response":"success"},{"item":"detect-character-encoding","response":"success"},{"item":"detect-emoji-support","response":"success"},{"item":"detect-hover","response":"success"},{"item":"detect-it","response":"success"},{"item":"detect-node","response":"success"},{"item":"detect-passive-events","response":"success"},{"item":"detect-pointer","response":"success"},{"item":"detect-port","response":"success"},{"item":"detect-touch-events","response":"success"},{"item":"detective","response":"success"},{"item":"detox","response":"success"},{"item":"dev-ip","response":"success"},{"item":"devexpress-aspnetcore-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"devexpress-web","response":"success"},{"item":"dexie-batch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"df-visible","response":"success"},{"item":"dhtmlxgantt","response":"success"},{"item":"dhtmlxscheduler","response":"success"},{"item":"di","response":"success"},{"item":"di-lite","response":"success"},{"item":"diacritics","response":"success"},{"item":"dialog-polyfill","response":"success"},{"item":"dialogflow-fulfillment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n"},{"item":"dicer","response":"success"},{"item":"didyoumean","response":"success"},{"item":"diff","response":"success"},{"item":"diff-match-patch","response":"success"},{"item":"diff2html","response":"success"},{"item":"diffie-hellman","response":"success"},{"item":"difflib","response":"success"},{"item":"digibyte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dinero.js","response":"success"},{"item":"dingtalk-robot-sender","response":"success"},{"item":"dir-glob","response":"success"},{"item":"dir-resolve","response":"success"},{"item":"dir-walker-gen","response":"success"},{"item":"direction","response":"success"},{"item":"dirname-regex","response":"success"},{"item":"dirty-chai","response":"success"},{"item":"discontinuous-range","response":"success"},{"item":"discord-rpc","response":"success"},{"item":"discourse-sso","response":"success"},{"item":"dispatchr","response":"success"},{"item":"disposable-email-domains","response":"success"},{"item":"distributions","response":"success"},{"item":"distributions-poisson-quantile","response":"success"},{"item":"diva.js","response":"success"},{"item":"djv","response":"success"},{"item":"dkim-signer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dlv","response":"success"},{"item":"dnssd","response":"success"},{"item":"doccookies","response":"success"},{"item":"dock-spawn","response":"success"},{"item":"docker-events","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"dockerode","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"docopt","response":"success"},{"item":"doctrine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"document-ready","response":"success"},{"item":"documentdb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"documentdb-server","response":"success"},{"item":"documentdb-session","response":"success"},{"item":"docx-templates","response":"success"},{"item":"dogapi","response":"success"},{"item":"doge-seed","response":"success"},{"item":"dojo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dom-clipboard-api","response":"success"},{"item":"dom-inputevent","response":"success"},{"item":"dom-matches","response":"success"},{"item":"dom-mediacapture-record","response":"success"},{"item":"dom-parser","response":"success"},{"item":"dom-to-image","response":"success"},{"item":"dom4","response":"success"},{"item":"domexception","response":"success"},{"item":"domhandler","response":"success"},{"item":"domo","response":"success"},{"item":"dompurify","response":"success"},{"item":"domready","response":"success"},{"item":"domtagger","response":"success"},{"item":"domurl","response":"success"},{"item":"domutils","response":"success"},{"item":"donna","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dookie","response":"success"},{"item":"dos2unix","response":"success"},{"item":"dot","response":"success"},{"item":"dot-object","response":"success"},{"item":"dot-prop-immutable","response":"success"},{"item":"dotdir-regex","response":"success"},{"item":"dotdotdot","response":"success"},{"item":"dotenv-flow","response":"success"},{"item":"dotenv-parse-variables","response":"success"},{"item":"dotenv-safe","response":"success"},{"item":"dotenv-webpack","response":"success"},{"item":"dotfile-regex","response":"success"},{"item":"dottie","response":"success"},{"item":"double-ended-queue","response":"success"},{"item":"doublearray","response":"success"},{"item":"doubleclick-gpt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"download","response":"success"},{"item":"downloadjs","response":"success"},{"item":"downscale","response":"success"},{"item":"dplayer","response":"success"},{"item":"draft-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draft-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"draftjs-to-html","response":"success"},{"item":"drag-timetable","response":"success"},{"item":"draggabilly","response":"success"},{"item":"dragscroll","response":"success"},{"item":"dragselect","response":"success"},{"item":"dragster","response":"success"},{"item":"dragula","response":"success"},{"item":"driftless","response":"success"},{"item":"drivelist","response":"success"},{"item":"dropbox-chooser","response":"success"},{"item":"dropboxjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dropkickjs","response":"success"},{"item":"dropzone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ds18b20","response":"success"},{"item":"dsv","response":"success"},{"item":"dts-bundle","response":"success"},{"item":"dts-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"du","response":"success"},{"item":"duckduckgo-images-api","response":"success"},{"item":"duo_web_sdk","response":"success"},{"item":"duosecurity__duo_web","response":"success"},{"item":"duplexer2","response":"success"},{"item":"duplexer3","response":"success"},{"item":"duplexify","response":"success"},{"item":"duplicate-package-checker-webpack-plugin","response":"success"},{"item":"durandal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dush","response":"success"},{"item":"dustjs-linkedin","response":"success"},{"item":"dv","response":"success"},{"item":"dvtng-jss","response":"success"},{"item":"dw-bxslider-4","response":"success"},{"item":"dwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"dygraphs","response":"success"},{"item":"dymo-label-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"dynamic-time-warping","response":"success"},{"item":"dynamodb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"dynatable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"dynatrace","response":"success"},{"item":"dynogels","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"each","response":"success"},{"item":"earcut","response":"success"},{"item":"easeljs","response":"success"},{"item":"eases","response":"success"},{"item":"easy-api-request","response":"success"},{"item":"easy-jsend","response":"success"},{"item":"easy-rbac","response":"success"},{"item":"easy-session","response":"success"},{"item":"easy-table","response":"success"},{"item":"easy-xapi","response":"success"},{"item":"easy-xapi-utils","response":"success"},{"item":"easydate","response":"success"},{"item":"ebml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ebongarde-root","response":"success"},{"item":"eccrypto","response":"success"},{"item":"echarts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ecma-proposal-math-extensions","response":"success"},{"item":"ecore","response":"success"},{"item":"ecurve","response":"success"},{"item":"ed25519","response":"success"},{"item":"ed2curve","response":"success"},{"item":"edmonds-blossom","response":"success"},{"item":"edtr-io__mathquill","response":"success"},{"item":"ee-first","response":"success"},{"item":"egg-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"egg.js","response":"success"},{"item":"egjs__axes","response":"success"},{"item":"egjs__component","response":"success"},{"item":"ej.web.all","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"ejs","response":"success"},{"item":"ejs-locals","response":"success"},{"item":"ejson","response":"success"},{"item":"elastic.js","response":"success"},{"item":"elasticlunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"elasticsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"electron-clipboard-extended","response":"success"},{"item":"electron-devtools-installer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"electron-json-storage","response":"success"},{"item":"electron-load-devtool","response":"success"},{"item":"electron-localshortcut","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-localshortcut/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-notifications","response":"success"},{"item":"electron-notify","response":"success"},{"item":"electron-packager","response":"success"},{"item":"electron-prompt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-prompt/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-settings","response":"success"},{"item":"electron-spellchecker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-spellchecker/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"electron-window-state","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(1667,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3057,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3494,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(3651,26): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4182,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(4551,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(5412,30): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(6259,25): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7334,37): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7346,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7356,31): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7369,33): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7381,34): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7397,42): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7410,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7424,32): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7545,22): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n../DefinitelyTyped/types/electron-window-state/node_modules/electron/electron.d.ts(7995,29): error TS2689: Cannot extend an interface 'NodeJS.EventEmitter'. Did you mean 'implements'?\n"},{"item":"element-closest","response":"success"},{"item":"element-resize-detector","response":"success"},{"item":"element-resize-event","response":"success"},{"item":"elementtree","response":"success"},{"item":"elgamal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"elliptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"elm","response":"success"},{"item":"elo-rank","response":"success"},{"item":"elv","response":"success"},{"item":"email-templates","response":"success"},{"item":"ember","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-data__adapter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__model","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-data__serializer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-data__store","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember-feature-flags","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-modal-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ember-resolver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember-test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember-testing-helpers","response":"success"},{"item":"ember__application","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ember__controller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__debug","response":"success"},{"item":"ember__engine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__error","response":"success"},{"item":"ember__object","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__ordered-set","response":"success"},{"item":"ember__polyfills","response":"success"},{"item":"ember__routing","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__runloop","response":"success"},{"item":"ember__service","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"ember__string","response":"success"},{"item":"ember__template","response":"success"},{"item":"ember__test","response":"success"},{"item":"ember__test-helpers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ember__utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"emissary","response":"success"},{"item":"emoji-flags","response":"success"},{"item":"emoji-js","response":"success"},{"item":"emoji-mart","response":"success"},{"item":"emoji-regex","response":"success"},{"item":"emoji-strip","response":"success"},{"item":"emojione","response":"success"},{"item":"empower","response":"success"},{"item":"empty-dir","response":"success"},{"item":"emscripten","response":"success"},{"item":"encodeurl","response":"success"},{"item":"encoding-down","response":"success"},{"item":"encoding-japanese","response":"success"},{"item":"end-of-stream","response":"success"},{"item":"engine-check","response":"success"},{"item":"engine.io","response":"success"},{"item":"engine.io-client","response":"success"},{"item":"enhanced-resolve","response":"success"},{"item":"enigma.js","response":"success"},{"item":"enquire.js","response":"success"},{"item":"ensure-posix-path","response":"success"},{"item":"ent","response":"success"},{"item":"entities","response":"success"},{"item":"entria__relay-experimental","response":"success"},{"item":"env-ci","response":"success"},{"item":"env-to-object","response":"success"},{"item":"envify","response":"success"},{"item":"enzyme","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-adapter-react-15","response":"success"},{"item":"enzyme-adapter-react-15.4","response":"success"},{"item":"enzyme-adapter-react-16","response":"success"},{"item":"enzyme-async-helpers","response":"success"},{"item":"enzyme-react-intl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n"},{"item":"enzyme-to-json","response":"success"},{"item":"eonasdan-bootstrap-datetimepicker","response":"success"},{"item":"epiceditor","response":"success"},{"item":"epilogue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"epub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"eq.js","response":"success"},{"item":"error-subclass","response":"success"},{"item":"errorhandler","response":"success"},{"item":"es-feature-detection","response":"success"},{"item":"es-module-lexer","response":"success"},{"item":"es-to-primitive","response":"success"},{"item":"es6-collections","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/es6-collections/index.d.ts(22,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(47,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(53,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(67,5): error TS2687: All declarations of 'size' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(73,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(89,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakMap', but here has type 'WeakMap'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(102,24): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(103,48): error TS2344: Type 'T' does not satisfy the constraint 'object'.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2687: All declarations of 'prototype' must have identical modifiers.\n../DefinitelyTyped/types/es6-collections/index.d.ts(104,5): error TS2717: Subsequent property declarations must have the same type. Property 'prototype' must be of type 'WeakSet', but here has type 'WeakSet'.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(28,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(34,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(54,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(64,14): error TS2687: All declarations of 'size' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(69,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.collection.d.ts(87,14): error TS2687: All declarations of 'prototype' must have identical modifiers.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\n"},{"item":"es6-promisify","response":"success"},{"item":"es6-set-proptypes","response":"success"},{"item":"es6-shim","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'statements' of undefined\n"},{"item":"es6-weak-map","response":"success"},{"item":"esc-pos-encoder","response":"success"},{"item":"escape-html","response":"success"},{"item":"escape-latex","response":"success"},{"item":"escape-regexp","response":"success"},{"item":"escodegen","response":"success"},{"item":"escpos","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eslint-plugin-prettier","response":"success"},{"item":"eslint-scope","response":"success"},{"item":"eslint-visitor-keys","response":"success"},{"item":"esm","response":"success"},{"item":"esprima","response":"success"},{"item":"esprima-walk","response":"success"},{"item":"espruino","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'global' must be of type 'any', but here has type 'Global'.\n"},{"item":"esquery","response":"success"},{"item":"esrever","response":"success"},{"item":"esri-leaflet","response":"success"},{"item":"esri-leaflet-geocoder","response":"success"},{"item":"estimate","response":"success"},{"item":"estraverse","response":"success"},{"item":"estree","response":"success"},{"item":"estree-jsx","response":"success"},{"item":"etag","response":"success"},{"item":"eth-lightwallet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"eth-sig-util","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ethereum-protocol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"ethereumjs-abi","response":"success"},{"item":"ethjs-signer","response":"success"},{"item":"eureka-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"evaporate","response":"success"},{"item":"event-emitter","response":"success"},{"item":"event-emitter-es6","response":"success"},{"item":"event-hooks-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"event-kit","response":"success"},{"item":"event-loop-lag","response":"success"},{"item":"event-stream","response":"success"},{"item":"event-to-promise","response":"success"},{"item":"events","response":"success"},{"item":"events.once","response":"success"},{"item":"eventsource","response":"success"},{"item":"evernote","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"excel-style-dataformatter","response":"success"},{"item":"exenv","response":"success"},{"item":"exif","response":"success"},{"item":"exit","response":"success"},{"item":"exorcist","response":"success"},{"item":"expand-tilde","response":"success"},{"item":"expect-puppeteer","response":"success"},{"item":"expect.js","response":"success"},{"item":"expectations","response":"success"},{"item":"expired","response":"success"},{"item":"expired-storage","response":"success"},{"item":"expirymanager","response":"success"},{"item":"expo-mixpanel-analytics","response":"success"},{"item":"expo__status-bar-height","response":"success"},{"item":"expo__vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"express","response":"success"},{"item":"express-actuator","response":"success"},{"item":"express-async-wrap","response":"success"},{"item":"express-boom","response":"success"},{"item":"express-brute","response":"success"},{"item":"express-brute-memcached","response":"success"},{"item":"express-brute-mongo","response":"success"},{"item":"express-brute-redis","response":"success"},{"item":"express-bunyan-logger","response":"success"},{"item":"express-busboy","response":"success"},{"item":"express-cluster","response":"success"},{"item":"express-correlation-id","response":"success"},{"item":"express-debug","response":"success"},{"item":"express-domain-middleware","response":"success"},{"item":"express-ejs-layouts","response":"success"},{"item":"express-enforces-ssl","response":"success"},{"item":"express-fileupload","response":"success"},{"item":"express-flash","response":"success"},{"item":"express-flash-2","response":"success"},{"item":"express-flash-notification","response":"success"},{"item":"express-form-data","response":"success"},{"item":"express-formidable","response":"success"},{"item":"express-handlebars","response":"success"},{"item":"express-http-proxy","response":"success"},{"item":"express-jsonschema","response":"success"},{"item":"express-jwt","response":"success"},{"item":"express-less","response":"success"},{"item":"express-list-endpoints","response":"success"},{"item":"express-minify","response":"success"},{"item":"express-mongo-sanitize","response":"success"},{"item":"express-mung","response":"success"},{"item":"express-myconnection","response":"success"},{"item":"express-mysql-session","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-ntlm","response":"success"},{"item":"express-oauth-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-paginate","response":"success"},{"item":"express-partials","response":"success"},{"item":"express-pino-logger","response":"success"},{"item":"express-rate-limit","response":"success"},{"item":"express-redis-cache","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"express-request-id","response":"success"},{"item":"express-route-fs","response":"success"},{"item":"express-routemap","response":"success"},{"item":"express-routes-versioning","response":"success"},{"item":"express-sanitized","response":"success"},{"item":"express-serve-static-core","response":"success"},{"item":"express-session","response":"success"},{"item":"express-sitemap-xml","response":"success"},{"item":"express-slow-down","response":"success"},{"item":"express-socket.io-session","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/express-socket.io-session/index.d.ts(12,27): error TS2694: Namespace 'global.Express' has no exported member 'Session'.\n"},{"item":"express-sslify","response":"success"},{"item":"express-status-monitor","response":"success"},{"item":"express-to-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"express-unless","response":"success"},{"item":"express-urlrewrite","response":"success"},{"item":"express-useragent","response":"success"},{"item":"express-version-request","response":"success"},{"item":"express-version-route","response":"success"},{"item":"express-wechat-access","response":"success"},{"item":"express-ws","response":"success"},{"item":"express-ws-routes","response":"success"},{"item":"express-xml-bodyparser","response":"success"},{"item":"extend","response":"success"},{"item":"extjs","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"extra-watch-webpack-plugin","response":"success"},{"item":"extract-files","response":"success"},{"item":"extract-text-webpack-plugin","response":"success"},{"item":"extract-zip","response":"success"},{"item":"extsprintf","response":"success"},{"item":"eyes","response":"success"},{"item":"ez-plus","response":"success"},{"item":"f1","response":"success"},{"item":"fabric","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"facebook-instant-games","response":"success"},{"item":"facebook-js-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"facebook-locales","response":"success"},{"item":"facebook-pixel","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"facepaint","response":"success"},{"item":"factory-girl","response":"success"},{"item":"faker","response":"success"},{"item":"falafel","response":"success"},{"item":"falcor","response":"success"},{"item":"falcor-express","response":"success"},{"item":"falcor-http-datasource","response":"success"},{"item":"falcor-json-graph","response":"success"},{"item":"falcor-router","response":"success"},{"item":"famous","response":"success"},{"item":"fancy-log","response":"success"},{"item":"fancybox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"farbtastic","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"fast-chunk-string","response":"success"},{"item":"fast-html-parser","response":"success"},{"item":"fast-json-stable-stringify","response":"success"},{"item":"fast-levenshtein","response":"success"},{"item":"fast-list","response":"success"},{"item":"fast-memory-cache","response":"success"},{"item":"fast-ratelimit","response":"success"},{"item":"fast-shuffle","response":"success"},{"item":"fast-stats","response":"success"},{"item":"fast-text-encoding","response":"success"},{"item":"fast64","response":"success"},{"item":"fastbitset","response":"success"},{"item":"fastclick","response":"success"},{"item":"fastify-accepts","response":"success"},{"item":"fastify-favicon","response":"success"},{"item":"fastify-rate-limit","response":"success"},{"item":"favico.js","response":"success"},{"item":"favicons","response":"success"},{"item":"favicons-webpack-plugin","response":"success"},{"item":"fb-watchman","response":"success"},{"item":"fbemitter","response":"success"},{"item":"feather-icons","response":"success"},{"item":"feather-route-matcher","response":"success"},{"item":"featherlight","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__authentication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-client","response":"success"},{"item":"feathersjs__authentication-jwt","response":"success"},{"item":"feathersjs__authentication-local","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"feathersjs__authentication-oauth1","response":"success"},{"item":"feathersjs__authentication-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"feathersjs__configuration","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__errors","response":"success"},{"item":"feathersjs__express","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"feathersjs__feathers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n"},{"item":"feathersjs__primus","response":"success"},{"item":"feathersjs__primus-client","response":"success"},{"item":"feathersjs__rest-client","response":"success"},{"item":"feathersjs__socket-commons","response":"success"},{"item":"feathersjs__socketio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"feathersjs__socketio-client","response":"success"},{"item":"feedme","response":"success"},{"item":"feedparser","response":"success"},{"item":"fetch-jsonp","response":"success"},{"item":"fetch-mock","response":"success"},{"item":"fetch.io","response":"success"},{"item":"ffi","response":"success"},{"item":"ffi-napi","response":"success"},{"item":"ffmpeg","response":"success"},{"item":"ffmpeg-static","response":"success"},{"item":"ffmpeg.js","response":"success"},{"item":"ffprobe-static","response":"success"},{"item":"fhir","response":"success"},{"item":"fhir-js-client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fhir-kit-client","response":"success"},{"item":"fibers","response":"success"},{"item":"fibjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/fibjs\n../DefinitelyTyped/types/fibjs/declare/assert.d.ts(789,11): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/fibjs/declare/console.d.ts(912,11): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/fibjs/declare/constants.d.ts(212,11): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(383,16): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/fibjs/declare/crypto.d.ts(601,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(217,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/dgram.d.ts(289,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/dns.d.ts(234,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(238,16): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/fibjs/declare/fs.d.ts(672,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(214,16): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(314,16): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/fibjs/declare/http.d.ts(508,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(76,8): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(78,8): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(81,8): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(83,8): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(85,8): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(87,8): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/fibjs/declare/index.d.ts(88,8): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(247,16): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/fibjs/declare/net.d.ts(391,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(222,16): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/fibjs/declare/os.d.ts(476,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/path.d.ts(370,11): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/fibjs/declare/process.d.ts(556,11): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/fibjs/declare/punycode.d.ts(256,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/querystring.d.ts(262,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(215,16): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/fibjs/declare/string_decoder.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/timers.d.ts(330,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/tty.d.ts(223,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/url.d.ts(236,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/util.d.ts(983,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/vm.d.ts(221,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/fibjs/declare/zlib.d.ts(520,2): error TS2309: An export assignment cannot be used in a module with other exported elements.\n../DefinitelyTyped/types/node/assert.d.ts(52,14): error TS2300: Duplicate identifier 'internal'.\n../DefinitelyTyped/types/node/console.d.ts(2,14): error TS2300: Duplicate identifier 'console'.\n../DefinitelyTyped/types/node/constants.d.ts(7,14): error TS2300: Duplicate identifier 'exp'.\n../DefinitelyTyped/types/node/crypto.d.ts(204,11): error TS2300: Duplicate identifier 'Cipher'.\n../DefinitelyTyped/types/node/dgram.d.ts(37,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/fs.d.ts(1670,15): error TS2451: Cannot redeclare block-scoped variable 'constants'.\n../DefinitelyTyped/types/node/globals.d.ts(143,13): error TS2451: Cannot redeclare block-scoped variable 'process'.\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2451: Cannot redeclare block-scoped variable 'global'.\n../DefinitelyTyped/types/node/globals.d.ts(147,13): error TS2451: Cannot redeclare block-scoped variable '__filename'.\n../DefinitelyTyped/types/node/globals.d.ts(148,13): error TS2451: Cannot redeclare block-scoped variable '__dirname'.\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2451: Cannot redeclare block-scoped variable 'require'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(181,15): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n../DefinitelyTyped/types/node/http.d.ts(136,15): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(137,11): error TS2300: Duplicate identifier 'Server'.\n../DefinitelyTyped/types/node/http.d.ts(381,11): error TS2451: Cannot redeclare block-scoped variable 'STATUS_CODES'.\n../DefinitelyTyped/types/node/net.d.ts(56,11): error TS2300: Duplicate identifier 'Socket'.\n../DefinitelyTyped/types/node/os.d.ts(214,11): error TS2451: Cannot redeclare block-scoped variable 'EOL'.\n../DefinitelyTyped/types/node/path.d.ts(152,14): error TS2300: Duplicate identifier 'path'.\n../DefinitelyTyped/types/node/process.d.ts(14,14): error TS2300: Duplicate identifier 'process'.\n../DefinitelyTyped/types/node/string_decoder.d.ts(2,11): error TS2300: Duplicate identifier 'StringDecoder'.\n../DefinitelyTyped/types/node/ts3.2/globals.d.ts(10,11): error TS2451: Cannot redeclare block-scoped variable 'Buffer'.\n"},{"item":"field","response":"success"},{"item":"figlet","response":"success"},{"item":"figma","response":"success"},{"item":"file-entry-cache","response":"success"},{"item":"file-exists","response":"success"},{"item":"file-loader","response":"success"},{"item":"file-saver","response":"success"},{"item":"file-size","response":"success"},{"item":"filesize-parser","response":"success"},{"item":"filesystem","response":"success"},{"item":"filewriter","response":"success"},{"item":"filing-cabinet","response":"success"},{"item":"fill-pdf","response":"success"},{"item":"filter-invalid-dom-props","response":"success"},{"item":"final-form-focus","response":"success"},{"item":"final-form-set-field-data","response":"success"},{"item":"final-form-set-field-touched","response":"success"},{"item":"finalhandler","response":"success"},{"item":"finch","response":"success"},{"item":"find","response":"success"},{"item":"find-cache-dir","response":"success"},{"item":"find-config","response":"success"},{"item":"find-down","response":"success"},{"item":"find-exec","response":"success"},{"item":"find-package-json","response":"success"},{"item":"find-parent-dir","response":"success"},{"item":"find-project-root","response":"success"},{"item":"find-root","response":"success"},{"item":"find-unused-sass-variables","response":"success"},{"item":"findup-sync","response":"success"},{"item":"fined","response":"success"},{"item":"fingerprintjs","response":"success"},{"item":"fingerprintjs2","response":"success"},{"item":"firebase-client","response":"success"},{"item":"firebase-token-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"firebird","response":"success"},{"item":"firefox","response":"success"},{"item":"firefox-webext-browser","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"firmata","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"first-mate","response":"success"},{"item":"fixed-data-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"fixed-data-table-2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"flagged-respawn","response":"success"},{"item":"flake-idgen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flat","response":"success"},{"item":"flat-cache","response":"success"},{"item":"flatbuffers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"flatbush","response":"success"},{"item":"fleximap","response":"success"},{"item":"flexmonster","response":"success"},{"item":"flexslider","response":"success"},{"item":"flickity","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"flight","response":"success"},{"item":"flightplan","response":"success"},{"item":"flipsnap","response":"success"},{"item":"float-equal","response":"success"},{"item":"float-regex","response":"success"},{"item":"flot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"flowdoc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\nnode_modules/typescript/lib/lib.dom.d.ts(4585,40): error TS2344: Type 'HTMLAnchorElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4658,39): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4703,38): error TS2344: Type 'HTMLAnchorElement | HTMLAreaElement' does not satisfy the constraint 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4725,40): error TS2344: Type 'HTMLEmbedElement' does not satisfy the constraint 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4737,40): error TS2344: Type 'HTMLScriptElement' does not satisfy the constraint 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(4961,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(4962,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(5331,101): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Element'.\n Type 'HTMLAnchorElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(5332,100): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Element'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Element'.\n Type 'SVGScriptElement' is not assignable to type 'Element'.\nnode_modules/typescript/lib/lib.dom.d.ts(6221,11): error TS2430: Interface 'HTMLAnchorElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6475,11): error TS2430: Interface 'HTMLButtonElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6767,11): error TS2430: Interface 'HTMLEmbedElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(6801,11): error TS2430: Interface 'HTMLFieldSetElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7304,11): error TS2430: Interface 'HTMLInputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7508,11): error TS2430: Interface 'HTMLLIElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7568,11): error TS2430: Interface 'HTMLLinkElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(7981,11): error TS2430: Interface 'HTMLOListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8002,11): error TS2430: Interface 'HTMLObjectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8216,11): error TS2430: Interface 'HTMLOutputElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8260,11): error TS2430: Interface 'HTMLParamElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8365,11): error TS2430: Interface 'HTMLScriptElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8414,11): error TS2430: Interface 'HTMLSelectElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8529,11): error TS2430: Interface 'HTMLSourceElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8569,11): error TS2430: Interface 'HTMLStyleElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(8950,11): error TS2430: Interface 'HTMLTextAreaElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(9120,11): error TS2430: Interface 'HTMLUListElement' incorrectly extends interface 'HTMLElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11589,87): error TS2344: Type 'HTMLElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'HTMLElement | HTMLCanvasElement | HTMLImageElement | HTMLVideoElement | HTMLAnchorElement | ... 66 more ... | HTMLUListElement' is not assignable to type 'Node'.\n Type 'HTMLAnchorElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(11590,86): error TS2344: Type 'SVGElementTagNameMap[K]' does not satisfy the constraint 'Node'.\n Type 'SVGImageElement | SVGScriptElement | SVGSymbolElement | SVGAElement | SVGStyleElement | ... 51 more ... | SVGViewElement' is not assignable to type 'Node'.\n Type 'SVGScriptElement' is not assignable to type 'Node'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(13142,11): error TS2430: Interface 'SVGComponentTransferFunctionElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13323,11): error TS2430: Interface 'SVGFEColorMatrixElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(13741,11): error TS2430: Interface 'SVGFETurbulenceElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'SVGAnimatedEnumeration' is not assignable to type 'NodeType'.\n Type 'SVGAnimatedEnumeration' is not assignable to type '\"LAYER\"'.\nnode_modules/typescript/lib/lib.dom.d.ts(14639,11): error TS2430: Interface 'SVGScriptElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\nnode_modules/typescript/lib/lib.dom.d.ts(14686,11): error TS2430: Interface 'SVGStyleElement' incorrectly extends interface 'SVGElement'.\n Types of property 'type' are incompatible.\n Type 'string' is not assignable to type 'NodeType'.\n"},{"item":"flowjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"fluent","response":"success"},{"item":"fluent-ffmpeg","response":"success"},{"item":"fluent-langneg","response":"success"},{"item":"fluent-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__bundle","response":"success"},{"item":"fluent__dedent","response":"success"},{"item":"fluent__langneg","response":"success"},{"item":"fluent__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"fluent__sequence","response":"success"},{"item":"flush-write-stream","response":"success"},{"item":"flushable","response":"success"},{"item":"flux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fluxible","response":"success"},{"item":"fluxible-addons-react","response":"success"},{"item":"fluxible-router","response":"success"},{"item":"fluxxor","response":"success"},{"item":"fm-websync","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fnando__sparkline","response":"success"},{"item":"fnv-lite","response":"success"},{"item":"focus-within","response":"success"},{"item":"follow-redirects","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"fontfaceobserver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"fontkit","response":"success"},{"item":"fontoxml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"force-graph","response":"success"},{"item":"forever-agent","response":"success"},{"item":"forever-monitor","response":"success"},{"item":"forge-apis","response":"success"},{"item":"forge-viewer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"form-serialize","response":"success"},{"item":"form-serializer","response":"success"},{"item":"form-urlencoded","response":"success"},{"item":"format-duration","response":"success"},{"item":"format-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"format-link-header","response":"success"},{"item":"format-unicorn","response":"success"},{"item":"format-util","response":"success"},{"item":"formidable","response":"success"},{"item":"formol","response":"success"},{"item":"forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"forwarded","response":"success"},{"item":"fossil-delta","response":"success"},{"item":"foundation","response":"success"},{"item":"fpsmeter","response":"success"},{"item":"framebus","response":"success"},{"item":"franc","response":"success"},{"item":"frappe-gantt","response":"success"},{"item":"frctl__fractal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'length' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n"},{"item":"frecency","response":"success"},{"item":"freedom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"freeport","response":"success"},{"item":"fresh","response":"success"},{"item":"freshy","response":"success"},{"item":"frida-gum","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/frida-gum/index.d.ts(2179,15): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5621,11): error TS2300: Duplicate identifier 'File'.\nnode_modules/typescript/lib/lib.dom.d.ts(5626,13): error TS2300: Duplicate identifier 'File'.\n"},{"item":"friendly-errors-webpack-plugin","response":"success"},{"item":"frisby","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"from","response":"success"},{"item":"from2","response":"success"},{"item":"fromjs","response":"success"},{"item":"fs-capacitor","response":"success"},{"item":"fs-cson","response":"success"},{"item":"fs-ext","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-extra-promise-es6","response":"success"},{"item":"fs-finder","response":"success"},{"item":"fs-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fs-plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"fs-readdir-recursive","response":"success"},{"item":"fs-readfile-promise","response":"success"},{"item":"fscreen","response":"success"},{"item":"ftdomdelegate","response":"success"},{"item":"ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"ftpd","response":"success"},{"item":"ftps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"fullcalendar__vue","response":"success"},{"item":"fullname","response":"success"},{"item":"fullpage.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"function-bind","response":"success"},{"item":"fundamental-react","response":"success"},{"item":"fusioncharts","response":"success"},{"item":"fuzzaldrin","response":"success"},{"item":"fuzzaldrin-plus","response":"success"},{"item":"fuzzy-search","response":"success"},{"item":"fuzzyset","response":"success"},{"item":"fuzzyset.js","response":"success"},{"item":"fxjs","response":"success"},{"item":"fxn","response":"success"},{"item":"gae.channel.api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gamedig","response":"success"},{"item":"gamepad","response":"success"},{"item":"gamequery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"gandi-livedns","response":"success"},{"item":"gapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.auth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.acceleratedmobilepageurl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangebuyer2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexchangeseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adexperiencereport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.admin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsense","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.adsensehost","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.analyticsreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androiddeviceprovisioning","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidenterprise","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.androidpublisher","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appengine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appsactivity","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.appstate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.bigquerydatatransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.blogger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.books","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.calendar","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.civicinfo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.classroom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbilling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudbuild","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouddebugger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouderrorreporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudfunctions","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudiot","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudkms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudmonitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudresourcemanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.cloudtrace","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.clouduseraccounts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.compute","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.consumersurveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.container","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.content","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.customsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dataproc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.deploymentmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dfareporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.discovery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dlp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.dns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclickbidmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.doubleclicksearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebasedynamiclinks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaseremoteconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firebaserules","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.firestore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fitness","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.fusiontables","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.games","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesconfiguration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gamesmanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.genomics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.gmail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupsmigration","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.groupssettings","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.iam","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.identitytoolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.kgsearch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.language","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.licensing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.logging","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.manufacturers","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.mirror","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.ml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.monitoring","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oauth2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.oslogin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.partners","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.photoslibrary","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playcustomapp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.playmoviespartner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.plusdomains","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.prediction","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.proximitybeacon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.pubsub","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.qpxexpress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.reseller","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.resourceviews","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.runtimeconfig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.safebrowsing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.script","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.searchconsole","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicecontrol","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.servicemanagement","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.serviceuser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sheets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.siteverification","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.slides","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sourcerepo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.spectrum","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.speech","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.sqladmin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.storagetransfer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.streetviewpublish","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.surveys","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tagmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.taskqueue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.toolresults","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vault","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.videointelligence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.vision","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webfonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.webmasters","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.client.youtubereporting","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.drive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.pagespeedonline","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.people","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.plus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.translate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.urlshortener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtube","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gapi.youtubeanalytics","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gaussian","response":"success"},{"item":"gaze","response":"success"},{"item":"gc-stats","response":"success"},{"item":"gdal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"geetest","response":"success"},{"item":"gematriya","response":"success"},{"item":"gen-readlines","response":"success"},{"item":"generate-changelog","response":"success"},{"item":"generate-json-webpack-plugin","response":"success"},{"item":"generic-functions","response":"success"},{"item":"generic-pool","response":"success"},{"item":"gently","response":"success"},{"item":"geobuf","response":"success"},{"item":"geodesy","response":"success"},{"item":"geoflatbush","response":"success"},{"item":"geoip-lite","response":"success"},{"item":"geojson","response":"success"},{"item":"geojson2osm","response":"success"},{"item":"geokdbush","response":"success"},{"item":"geolite2","response":"success"},{"item":"geometry-dom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/geometry-dom/index.d.ts(236,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPointReadOnly' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPointReadOnly; prototype: DOMPointReadOnly; fromPoint(other?: DOMPointInit): DOMPointReadOnly; }', but here has type '{ new (x: number, y: number, z: number, w: number): DOMPointReadOnly; prototype: DOMPointReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(241,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMPoint' must be of type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; fromPoint(other?: DOMPointInit): DOMPoint; }', but here has type '{ new (x?: number, y?: number, z?: number, w?: number): DOMPoint; prototype: DOMPoint; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(250,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(254,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(265,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRect' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRect; prototype: DOMRect; fromRect(other?: DOMRectInit): DOMRect; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRect; prototype: DOMRect; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(270,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMRectReadOnly' must be of type '{ new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly; prototype: DOMRectReadOnly; fromRect(other?: DOMRectInit): DOMRectReadOnly; }', but here has type '{ new (x: number, y: number, width: number, height: number): DOMRectReadOnly; prototype: DOMRectReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(279,5): error TS2687: All declarations of 'x' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(283,5): error TS2687: All declarations of 'y' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(287,5): error TS2687: All declarations of 'width' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(291,5): error TS2687: All declarations of 'height' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(299,5): error TS2687: All declarations of 'length' must have identical modifiers.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(307,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMQuad' must be of type '{ new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; fromQuad(other?: DOMQuadInit): DOMQuad; fromRect(other?: DOMRectInit): DOMQuad; }', but here has type '{ new (rect?: DOMRectInit): DOMQuad; new (p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad; prototype: DOMQuad; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(313,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrixReadOnly' must be of type '{ new (init?: string | number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly; fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly; fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly; toString(): string; }', but here has type '{ new (numberSequence: number[]): DOMMatrixReadOnly; prototype: DOMMatrixReadOnly; }'.\n../DefinitelyTyped/types/geometry-dom/index.d.ts(318,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'DOMMatrix' must be of type '{ new (init?: string | number[]): DOMMatrix; prototype: DOMMatrix; fromFloat32Array(array32: Float32Array): DOMMatrix; fromFloat64Array(array64: Float64Array): DOMMatrix; fromMatrix(other?: DOMMatrixInit): DOMMatrix; }', but here has type '{ new (): DOMMatrix; new (transformList: string): DOMMatrix; new (other: DOMMatrixReadOnly): DOMMatrix; new (array: number[]): DOMMatrix; new (a: number, b: number, c: number, d: number, e: number, f: number): DOMMatrix; prototype: DOMMatrix; }'.\nnode_modules/typescript/lib/lib.dom.d.ts(348,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(349,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(361,5): error TS2687: All declarations of 'height' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(362,5): error TS2687: All declarations of 'width' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(363,5): error TS2687: All declarations of 'x' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(364,5): error TS2687: All declarations of 'y' must have identical modifiers.\nnode_modules/typescript/lib/lib.dom.d.ts(4179,14): error TS2687: All declarations of 'length' must have identical modifiers.\n"},{"item":"geopattern","response":"success"},{"item":"geopoint","response":"success"},{"item":"gestalt","response":"success"},{"item":"get-caller-file","response":"success"},{"item":"get-certain","response":"success"},{"item":"get-emoji","response":"success"},{"item":"get-folder-size","response":"success"},{"item":"get-func-name","response":"success"},{"item":"get-node-dimensions","response":"success"},{"item":"get-res","response":"success"},{"item":"get-value","response":"success"},{"item":"getenv","response":"success"},{"item":"getos","response":"success"},{"item":"getpass","response":"success"},{"item":"gettext-parser","response":"success"},{"item":"gettext.js","response":"success"},{"item":"gfc","response":"success"},{"item":"gh-pages","response":"success"},{"item":"ghauth","response":"success"},{"item":"ghost-storage-base","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"gifffer","response":"success"},{"item":"gijgo","response":"success"},{"item":"giphy-api","response":"success"},{"item":"giraffe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"git","response":"success"},{"item":"git-add-remote","response":"success"},{"item":"git-branch","response":"success"},{"item":"git-branch-is","response":"success"},{"item":"git-config","response":"success"},{"item":"git-config-path","response":"success"},{"item":"git-raw-commits","response":"success"},{"item":"git-repo-name","response":"success"},{"item":"git-rev","response":"success"},{"item":"git-rev-sync","response":"success"},{"item":"git-revision-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"git-root-dir","response":"success"},{"item":"git-semver-tags","response":"success"},{"item":"git-url-parse","response":"success"},{"item":"git-user-email","response":"success"},{"item":"git-user-name","response":"success"},{"item":"git-username","response":"success"},{"item":"gitconfiglocal","response":"success"},{"item":"github-url-from-git","response":"success"},{"item":"github-url-to-object","response":"success"},{"item":"github-username-regex","response":"success"},{"item":"gl","response":"success"},{"item":"gl-fbo","response":"success"},{"item":"gl-matrix","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"gl-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of Parameter - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gl-react-dom","response":"success"},{"item":"gl-react-expo","response":"success"},{"item":"gl-react-headless","response":"success"},{"item":"gl-react-native","response":"success"},{"item":"gl-shader","response":"success"},{"item":"gl-texture2d","response":"success"},{"item":"gl-vec2","response":"success"},{"item":"gl-vec3","response":"success"},{"item":"gl-vec4","response":"success"},{"item":"gldatepicker","response":"success"},{"item":"glidejs","response":"success"},{"item":"glob","response":"success"},{"item":"glob-base","response":"success"},{"item":"glob-expand","response":"success"},{"item":"glob-parent","response":"success"},{"item":"glob-stream","response":"success"},{"item":"glob-to-regexp","response":"success"},{"item":"glob-watcher","response":"success"},{"item":"global-agent","response":"success"},{"item":"global-modules","response":"success"},{"item":"global-modules-path","response":"success"},{"item":"global-npm","response":"success"},{"item":"global-paths","response":"success"},{"item":"global-prefix","response":"success"},{"item":"global-tunnel-ng","response":"success"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"globalize-compiler","response":"success"},{"item":"globalthis","response":"success"},{"item":"globjoin","response":"success"},{"item":"globule","response":"success"},{"item":"glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"gm","response":"success"},{"item":"go","response":"success"},{"item":"good-storage","response":"success"},{"item":"google-adwords-scripts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"google-apps-script","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/google-apps-script\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-apps-script-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/google-apps-script/google-apps-script.base.d.ts(512,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'console' must be of type 'Console', but here has type 'console'.\n"},{"item":"google-closure-compiler","response":"success"},{"item":"google-cloud__datastore","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-cloud__kms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-cloud__tasks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"google-cloud__text-to-speech","response":"success"},{"item":"google-ddns","response":"success"},{"item":"google-drive-realtime-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-earth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-fonts","response":"success"},{"item":"google-images","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"google-libphonenumber","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-map-react","response":"success"},{"item":"google-maps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-maps-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-protobuf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google-translate-api","response":"success"},{"item":"google.analytics","response":"success"},{"item":"google.feeds","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.fonts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.geolocation","response":"success"},{"item":"google.picker","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.script.client-side","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google.visualization","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"google__maps","response":"success"},{"item":"google__markerclustererplus","response":"success"},{"item":"googlemaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlemaps.infobubble","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"googlepay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"got","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"graceful-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"gradient-string","response":"success"},{"item":"graham_scan","response":"success"},{"item":"gramps__rest-helpers","response":"success"},{"item":"graphite","response":"success"},{"item":"graphite-udp","response":"success"},{"item":"graphlib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"graphlib-dot","response":"success"},{"item":"graphql-api-koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphql-bigint","response":"success"},{"item":"graphql-date","response":"success"},{"item":"graphql-deduplicator","response":"success"},{"item":"graphql-depth-limit","response":"success"},{"item":"graphql-errors","response":"success"},{"item":"graphql-fields","response":"success"},{"item":"graphql-iso-date","response":"success"},{"item":"graphql-list-fields","response":"success"},{"item":"graphql-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"graphql-relay","response":"success"},{"item":"graphql-resolve-batch","response":"success"},{"item":"graphql-resolvers","response":"success"},{"item":"graphql-type-json","response":"success"},{"item":"graphql-type-uuid","response":"success"},{"item":"graphql-upload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"graphviz","response":"success"},{"item":"grasp","response":"success"},{"item":"gravatar","response":"success"},{"item":"gray-percentage","response":"success"},{"item":"graylog2","response":"success"},{"item":"greasemonkey","response":"success"},{"item":"grecaptcha","response":"success"},{"item":"gregorian-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"gremlin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"grid-template-parser","response":"success"},{"item":"gridfs-stream","response":"success"},{"item":"group-array","response":"success"},{"item":"growing-io","response":"success"},{"item":"grpc-error","response":"success"},{"item":"grunt","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"gsap","response":"success"},{"item":"gtag.js","response":"success"},{"item":"gtin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"guardian__prosemirror-invisibles","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"guid","response":"success"},{"item":"gulp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"gulp-angular-templatecache","response":"success"},{"item":"gulp-autoprefixer","response":"success"},{"item":"gulp-babel","response":"success"},{"item":"gulp-batch","response":"success"},{"item":"gulp-bump","response":"success"},{"item":"gulp-cache","response":"success"},{"item":"gulp-cached","response":"success"},{"item":"gulp-change","response":"success"},{"item":"gulp-changed","response":"success"},{"item":"gulp-cheerio","response":"success"},{"item":"gulp-clean-dest","response":"success"},{"item":"gulp-coffeeify","response":"success"},{"item":"gulp-coffeelint","response":"success"},{"item":"gulp-concat","response":"success"},{"item":"gulp-connect","response":"success"},{"item":"gulp-copy","response":"success"},{"item":"gulp-csso","response":"success"},{"item":"gulp-debug","response":"success"},{"item":"gulp-diff","response":"success"},{"item":"gulp-dtsm","response":"success"},{"item":"gulp-espower","response":"success"},{"item":"gulp-file-include","response":"success"},{"item":"gulp-filter","response":"success"},{"item":"gulp-flatten","response":"success"},{"item":"gulp-gh-pages","response":"success"},{"item":"gulp-gzip","response":"success"},{"item":"gulp-header","response":"success"},{"item":"gulp-help","response":"success"},{"item":"gulp-help-doc","response":"success"},{"item":"gulp-html-prettify","response":"success"},{"item":"gulp-html-replace","response":"success"},{"item":"gulp-htmlmin","response":"success"},{"item":"gulp-if","response":"success"},{"item":"gulp-image","response":"success"},{"item":"gulp-image-resize","response":"success"},{"item":"gulp-imagemin","response":"success"},{"item":"gulp-inject","response":"success"},{"item":"gulp-insert","response":"success"},{"item":"gulp-install","response":"success"},{"item":"gulp-intercept","response":"success"},{"item":"gulp-istanbul","response":"success"},{"item":"gulp-jade","response":"success"},{"item":"gulp-jasmine","response":"success"},{"item":"gulp-jasmine-browser","response":"success"},{"item":"gulp-json-editor","response":"success"},{"item":"gulp-json-validator","response":"success"},{"item":"gulp-jsonmin","response":"success"},{"item":"gulp-jsonminify","response":"success"},{"item":"gulp-jspm","response":"success"},{"item":"gulp-less","response":"success"},{"item":"gulp-load-plugins","response":"success"},{"item":"gulp-minify-css","response":"success"},{"item":"gulp-minify-html","response":"success"},{"item":"gulp-mocha","response":"success"},{"item":"gulp-modernizr","response":"success"},{"item":"gulp-msbuild","response":"success"},{"item":"gulp-mustache","response":"success"},{"item":"gulp-newer","response":"success"},{"item":"gulp-ng-annotate","response":"success"},{"item":"gulp-nodemon","response":"success"},{"item":"gulp-nunit-runner","response":"success"},{"item":"gulp-plumber","response":"success"},{"item":"gulp-postcss","response":"success"},{"item":"gulp-protractor","response":"success"},{"item":"gulp-pug-i18n","response":"success"},{"item":"gulp-remember","response":"success"},{"item":"gulp-rename","response":"success"},{"item":"gulp-replace","response":"success"},{"item":"gulp-responsive-images","response":"success"},{"item":"gulp-rev","response":"success"},{"item":"gulp-rev-replace","response":"success"},{"item":"gulp-ruby-sass","response":"success"},{"item":"gulp-sass","response":"success"},{"item":"gulp-sass-variables","response":"success"},{"item":"gulp-sequence","response":"success"},{"item":"gulp-size","response":"success"},{"item":"gulp-sort","response":"success"},{"item":"gulp-sourcemaps","response":"success"},{"item":"gulp-strip-comments","response":"success"},{"item":"gulp-strip-debug","response":"success"},{"item":"gulp-stylus","response":"success"},{"item":"gulp-svg-sprite","response":"success"},{"item":"gulp-svgmin","response":"success"},{"item":"gulp-tap","response":"success"},{"item":"gulp-task-listing","response":"success"},{"item":"gulp-template","response":"success"},{"item":"gulp-terser","response":"success"},{"item":"gulp-tsd","response":"success"},{"item":"gulp-uglify","response":"success"},{"item":"gulp-useref","response":"success"},{"item":"gulp-util","response":"success"},{"item":"gulp-watch","response":"success"},{"item":"gulp-zip","response":"success"},{"item":"gun","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"gyronorm","response":"success"},{"item":"gzip-js","response":"success"},{"item":"h2o2","response":"success"},{"item":"halfred","response":"success"},{"item":"halogen","response":"success"},{"item":"halogenium","response":"success"},{"item":"hammerjs","response":"success"},{"item":"handlebars-helpers","response":"success"},{"item":"hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi-auth-basic","response":"success"},{"item":"hapi-auth-bearer-token","response":"success"},{"item":"hapi-auth-cookie","response":"success"},{"item":"hapi-decorators","response":"success"},{"item":"hapi-pino","response":"success"},{"item":"hapi-server-session","response":"success"},{"item":"hapi__b64","response":"success"},{"item":"hapi__basic","response":"success"},{"item":"hapi__bell","response":"success"},{"item":"hapi__catbox","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__catbox-memcached","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"hapi__catbox-memory","response":"success"},{"item":"hapi__catbox-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"hapi__cookie","response":"success"},{"item":"hapi__crumb","response":"success"},{"item":"hapi__glue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hapi__h2o2","response":"success"},{"item":"hapi__hapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__hawk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hapi__inert","response":"success"},{"item":"hapi__joi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"hapi__mimos","response":"success"},{"item":"hapi__nes","response":"success"},{"item":"hapi__podium","response":"success"},{"item":"hapi__shot","response":"success"},{"item":"hapi__sntp","response":"success"},{"item":"hapi__vision","response":"success"},{"item":"hapi__yar","response":"success"},{"item":"happypack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"har-format","response":"success"},{"item":"hard-source-webpack-plugin","response":"success"},{"item":"hark","response":"success"},{"item":"harmon","response":"success"},{"item":"harmony-proxy","response":"success"},{"item":"has-ansi","response":"success"},{"item":"hash-file","response":"success"},{"item":"hash-it","response":"success"},{"item":"hash-stream","response":"success"},{"item":"hash-sum","response":"success"},{"item":"hasher","response":"success"},{"item":"hashids","response":"success"},{"item":"hashmap","response":"success"},{"item":"hashring","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"hashset","response":"success"},{"item":"hashtable","response":"success"},{"item":"hashtag-regex","response":"success"},{"item":"hast","response":"success"},{"item":"hat","response":"success"},{"item":"haversine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hdkey","response":"success"},{"item":"he","response":"success"},{"item":"headroom","response":"success"},{"item":"heap","response":"success"},{"item":"heapdump","response":"success"},{"item":"heatmap.js","response":"success"},{"item":"hedron","response":"success"},{"item":"hellojs","response":"success"},{"item":"hellosign-embedded","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"helmet","response":"success"},{"item":"heredatalens","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heremaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"heroku-logger","response":"success"},{"item":"hex-rgba","response":"success"},{"item":"hexo","response":"success"},{"item":"hexo-bunyan","response":"success"},{"item":"hexo-fs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"hexo-log","response":"success"},{"item":"hexo-util","response":"success"},{"item":"hh-mm-ss","response":"success"},{"item":"hig__button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"highcharts-ng","response":"success"},{"item":"highland","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"highlight-words-core","response":"success"},{"item":"highlight.js","response":"success"},{"item":"highlightjs","response":"success"},{"item":"hiredis","response":"success"},{"item":"hirestime","response":"success"},{"item":"history","response":"success"},{"item":"history.js","response":"success"},{"item":"historykana","response":"success"},{"item":"hjson","response":"success"},{"item":"hls-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hls.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"hoek","response":"success"},{"item":"hogan.js","response":"success"},{"item":"hoist-non-react-statics","response":"success"},{"item":"holderjs","response":"success"},{"item":"honeybadger","response":"success"},{"item":"hooker","response":"success"},{"item":"hookrouter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"hopscotch","response":"success"},{"item":"host-validation","response":"success"},{"item":"hosted-git-info","response":"success"},{"item":"hostile","response":"success"},{"item":"howler","response":"success"},{"item":"hoxy","response":"success"},{"item":"hpp","response":"success"},{"item":"html-entities","response":"success"},{"item":"html-minifier","response":"success"},{"item":"html-minifier-terser","response":"success"},{"item":"html-parser","response":"success"},{"item":"html-pdf","response":"success"},{"item":"html-tag-names","response":"success"},{"item":"html-to-draftjs","response":"success"},{"item":"html-to-text","response":"success"},{"item":"html-truncate","response":"success"},{"item":"html-validator","response":"success"},{"item":"html-void-elements","response":"success"},{"item":"html-webpack-plugin","response":"success"},{"item":"html-webpack-template","response":"success"},{"item":"html2canvas","response":"success"},{"item":"html5-history","response":"success"},{"item":"html5-to-pdf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"html5plus","response":"success"},{"item":"htmlbars-inline-precompile","response":"success"},{"item":"htmlescape","response":"success"},{"item":"htmlhint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"htmlparser2","response":"success"},{"item":"htmltojsx","response":"success"},{"item":"http-assert","response":"success"},{"item":"http-aws-es","response":"success"},{"item":"http-build-query","response":"success"},{"item":"http-cache-semantics","response":"success"},{"item":"http-codes","response":"success"},{"item":"http-context","response":"success"},{"item":"http-errors","response":"success"},{"item":"http-link-header","response":"success"},{"item":"http-proxy","response":"success"},{"item":"http-proxy-agent","response":"success"},{"item":"http-proxy-middleware","response":"success"},{"item":"http-rx","response":"success"},{"item":"http-server","response":"success"},{"item":"http-string-parser","response":"success"},{"item":"httperr","response":"success"},{"item":"hubot","response":"success"},{"item":"hubspot-pace","response":"success"},{"item":"human-date","response":"success"},{"item":"human-interval","response":"success"},{"item":"humane-js","response":"success"},{"item":"humanize-duration","response":"success"},{"item":"humanize-ms","response":"success"},{"item":"humanize-plus","response":"success"},{"item":"humanparser","response":"success"},{"item":"hummus-recipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"humps","response":"success"},{"item":"hyco-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"hyper-aws4","response":"success"},{"item":"hyperscript","response":"success"},{"item":"hypertext-application-language","response":"success"},{"item":"hystrixjs","response":"success"},{"item":"i18n","response":"success"},{"item":"i18n-abide","response":"success"},{"item":"i18n-js","response":"success"},{"item":"i18next-ko","response":"success"},{"item":"i18next-node-fs-backend","response":"success"},{"item":"i18next-sprintf-postprocessor","response":"success"},{"item":"i2c-bus","response":"success"},{"item":"iab-vpaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iarna__toml","response":"success"},{"item":"iban","response":"success"},{"item":"ibm-mobilefirst","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ibm-openapi-validator","response":"success"},{"item":"ibm_db","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n"},{"item":"ical","response":"success"},{"item":"icepick","response":"success"},{"item":"icheck","response":"success"},{"item":"icon-gen","response":"success"},{"item":"iconv","response":"success"},{"item":"icss-utils","response":"success"},{"item":"identicon.js","response":"success"},{"item":"idyll","response":"success"},{"item":"idyll-ast","response":"success"},{"item":"idyll-compiler","response":"success"},{"item":"idyll-document","response":"success"},{"item":"iferr","response":"success"},{"item":"iframe-resizer","response":"success"},{"item":"ifvisible","response":"success"},{"item":"igdb-api-node","response":"success"},{"item":"ignite-ui","response":"success"},{"item":"ignore-styles","response":"success"},{"item":"ignore-walk","response":"success"},{"item":"iltorb","response":"success"},{"item":"image-thumbnail","response":"success"},{"item":"imagemagick","response":"success"},{"item":"imagemagick-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imagemapster","response":"success"},{"item":"imagemin","response":"success"},{"item":"imagemin-gifsicle","response":"success"},{"item":"imagemin-jpegtran","response":"success"},{"item":"imagemin-mozjpeg","response":"success"},{"item":"imagemin-optipng","response":"success"},{"item":"imagemin-pngquant","response":"success"},{"item":"imagemin-svgo","response":"success"},{"item":"imagemin-webp","response":"success"},{"item":"images","response":"success"},{"item":"imagesloaded","response":"success"},{"item":"imap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"imap-simple","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"imgur-rest-api","response":"success"},{"item":"immediate","response":"success"},{"item":"imperium","response":"success"},{"item":"impress","response":"success"},{"item":"imsi-grok","response":"success"},{"item":"imul","response":"success"},{"item":"imurmurhash","response":"success"},{"item":"in-app-purchase","response":"success"},{"item":"inboxsdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"incremental-dom","response":"success"},{"item":"indefinite","response":"success"},{"item":"inert","response":"success"},{"item":"ineum","response":"success"},{"item":"inflation","response":"success"},{"item":"inflected","response":"success"},{"item":"inflection","response":"success"},{"item":"infobox-parser","response":"success"},{"item":"inherits","response":"success"},{"item":"ini","response":"success"},{"item":"iniparser","response":"success"},{"item":"init-package-json","response":"success"},{"item":"ink-select-input","response":"success"},{"item":"ink-spinner","response":"success"},{"item":"ink-table","response":"success"},{"item":"ink-testing-library","response":"success"},{"item":"ink-text-input","response":"success"},{"item":"inline-critical","response":"success"},{"item":"inline-css","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"inline-style-prefixer","response":"success"},{"item":"input-moment","response":"success"},{"item":"inputmask","response":"success"},{"item":"inquirer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"inquirer-npm-name","response":"success"},{"item":"insert-css","response":"success"},{"item":"insert-module-globals","response":"success"},{"item":"insert-text-at-cursor","response":"success"},{"item":"insight","response":"success"},{"item":"inspectlet-es","response":"success"},{"item":"integer","response":"success"},{"item":"integrate-adaptive-simpson","response":"success"},{"item":"intercept-stdout","response":"success"},{"item":"intercom-client","response":"success"},{"item":"intercom-web","response":"success"},{"item":"intercomjs","response":"success"},{"item":"interface-datastore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"internal-slot","response":"success"},{"item":"interpret","response":"success"},{"item":"intersects","response":"success"},{"item":"intersperse","response":"success"},{"item":"intl","response":"success"},{"item":"intl-tel-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/intl-tel-input/index.d.ts(125,30): error TS2304: Cannot find name 'JQueryDeferred'.\n"},{"item":"intrinsic-scale","response":"success"},{"item":"intro.js","response":"success"},{"item":"invariant","response":"success"},{"item":"inversify-devtools","response":"success"},{"item":"iobroker","response":"success"},{"item":"ion-rangeslider","response":"success"},{"item":"iopipe__iopipe","response":"success"},{"item":"ioredis","response":"success"},{"item":"iost-contract","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/iost-contract"},{"item":"iota.lib.js","response":"success"},{"item":"ip","response":"success"},{"item":"ip-address","response":"success"},{"item":"ip-subnet-calculator","response":"success"},{"item":"ipcheck","response":"success"},{"item":"irc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iri","response":"success"},{"item":"iron","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"is","response":"success"},{"item":"is-absolute","response":"success"},{"item":"is-alphanumerical","response":"success"},{"item":"is-array","response":"success"},{"item":"is-base64","response":"success"},{"item":"is-blank","response":"success"},{"item":"is-buffer","response":"success"},{"item":"is-callable","response":"success"},{"item":"is-charging","response":"success"},{"item":"is-ci","response":"success"},{"item":"is-color","response":"success"},{"item":"is-date-object","response":"success"},{"item":"is-dotdir","response":"success"},{"item":"is-dotfile","response":"success"},{"item":"is-empty","response":"success"},{"item":"is-empty-object","response":"success"},{"item":"is-even","response":"success"},{"item":"is-finite","response":"success"},{"item":"is-function","response":"success"},{"item":"is-generator","response":"success"},{"item":"is-generator-function","response":"success"},{"item":"is-git-url","response":"success"},{"item":"is-glob","response":"success"},{"item":"is-hotkey","response":"success"},{"item":"is-integer","response":"success"},{"item":"is-my-json-valid","response":"success"},{"item":"is-natural-number","response":"success"},{"item":"is-negated-glob","response":"success"},{"item":"is-number","response":"success"},{"item":"is-number-like","response":"success"},{"item":"is-object","response":"success"},{"item":"is-odd","response":"success"},{"item":"is-progressive","response":"success"},{"item":"is-promise","response":"success"},{"item":"is-relative","response":"success"},{"item":"is-relative-path","response":"success"},{"item":"is-running","response":"success"},{"item":"is-ssh","response":"success"},{"item":"is-touch-device","response":"success"},{"item":"is-trademarked","response":"success"},{"item":"is-typedarray","response":"success"},{"item":"is-unc-path","response":"success"},{"item":"is-url","response":"success"},{"item":"is-uuid","response":"success"},{"item":"is-valid-glob","response":"success"},{"item":"is-valid-path","response":"success"},{"item":"is-windows","response":"success"},{"item":"isaac","response":"success"},{"item":"isarray","response":"success"},{"item":"isbn-utils","response":"success"},{"item":"iscroll","response":"success"},{"item":"isexe","response":"success"},{"item":"iso-3166-2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"iso8601-localizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"isomorphic-fetch","response":"success"},{"item":"isomorphic-form-data","response":"success"},{"item":"isotope-layout","response":"success"},{"item":"isstream","response":"success"},{"item":"issue-parser","response":"success"},{"item":"istanbul","response":"success"},{"item":"istanbul-lib-coverage","response":"success"},{"item":"istanbul-lib-hook","response":"success"},{"item":"istanbul-lib-instrument","response":"success"},{"item":"istanbul-lib-report","response":"success"},{"item":"istanbul-lib-source-maps","response":"success"},{"item":"istanbul-middleware","response":"success"},{"item":"istanbul-reports","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"istextorbinary","response":"success"},{"item":"it-all","response":"success"},{"item":"it-pushable","response":"success"},{"item":"ityped","response":"success"},{"item":"ix.js","response":"success"},{"item":"jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"jade","response":"success"},{"item":"jaeger-client","response":"success"},{"item":"jake","response":"success"},{"item":"jalaali-js","response":"success"},{"item":"japan-postal-code","response":"success"},{"item":"japanese-holidays","response":"success"},{"item":"jasmine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'statements' of undefined\n"},{"item":"jasmine-ajax","response":"success"},{"item":"jasmine-data-provider","response":"success"},{"item":"jasmine-data_driven_tests","response":"success"},{"item":"jasmine-enzyme","response":"success"},{"item":"jasmine-es6-promise-matchers","response":"success"},{"item":"jasmine-fixture","response":"success"},{"item":"jasmine-given","response":"success"},{"item":"jasmine-jquery","response":"success"},{"item":"jasmine-matchers","response":"success"},{"item":"jasmine-node","response":"success"},{"item":"jasmine-promise-matchers","response":"success"},{"item":"jasmine_dom_matchers","response":"success"},{"item":"jasminewd2","response":"success"},{"item":"java","response":"success"},{"item":"java-applet","response":"success"},{"item":"javascript-astar","response":"success"},{"item":"javascript-bignum","response":"success"},{"item":"javascript-state-machine","response":"success"},{"item":"javascript-time-ago","response":"success"},{"item":"jbinary","response":"success"},{"item":"jcanvas","response":"success"},{"item":"jdataview","response":"success"},{"item":"jee-jsf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jenkins","response":"success"},{"item":"jest","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"jest-axe","response":"success"},{"item":"jest-cucumber-fusion","response":"success"},{"item":"jest-dev-server","response":"success"},{"item":"jest-environment-puppeteer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/environment/build/index.d.ts(11,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/jest-environment-puppeteer/node_modules/jest-mock/build/index\"' can only be default-imported using the 'esModuleInterop' flag\n../DefinitelyTyped/types/jest-environment-puppeteer/node_modules/@jest/source-map/build/getCallsite.d.ts(8,100): error TS2503: Cannot find namespace 'callsites'.\n"},{"item":"jest-expect-message","response":"success"},{"item":"jest-image-snapshot","response":"success"},{"item":"jest-in-case","response":"success"},{"item":"jest-json-schema","response":"success"},{"item":"jest-matcher-one-of","response":"success"},{"item":"jest-plugin-context","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/jest-plugin-context"},{"item":"jest-plugin-set","response":"success"},{"item":"jest-sinon","response":"success"},{"item":"jest-specific-snapshot","response":"success"},{"item":"jest-when","response":"success"},{"item":"jexl","response":"success"},{"item":"jfp","response":"success"},{"item":"jfs","response":"success"},{"item":"jira-client","response":"success"},{"item":"jju","response":"success"},{"item":"jjv","response":"success"},{"item":"jjve","response":"success"},{"item":"jmespath","response":"success"},{"item":"johnny-five","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"joi","response":"success"},{"item":"joi-password-complexity","response":"success"},{"item":"joigoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"josa","response":"success"},{"item":"jotform-css.js","response":"success"},{"item":"jpeg-autorotate","response":"success"},{"item":"jpegtran-bin","response":"success"},{"item":"jpm","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jqgrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jqrangeslider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-ajax-chain","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-alertable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-animate-scroll","response":"success"},{"item":"jquery-awesome-cursor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-backstretch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"jquery-countdown","response":"success"},{"item":"jquery-countto","response":"success"},{"item":"jquery-cropbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-cropper","response":"success"},{"item":"jquery-deferred","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery-deparam","response":"success"},{"item":"jquery-drawer","response":"success"},{"item":"jquery-easy-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-editable-select","response":"success"},{"item":"jquery-focus-exit","response":"success"},{"item":"jquery-focusable","response":"success"},{"item":"jquery-formatdatetime","response":"success"},{"item":"jquery-fullscreen","response":"success"},{"item":"jquery-galleria","response":"success"},{"item":"jquery-gray","response":"success"},{"item":"jquery-handsontable","response":"success"},{"item":"jquery-jcrop","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jquery-jsonrpcclient","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-knob","response":"success"},{"item":"jquery-lazyload","response":"success"},{"item":"jquery-loading-overlay","response":"success"},{"item":"jquery-mask-plugin","response":"success"},{"item":"jquery-maskmoney","response":"success"},{"item":"jquery-match-height","response":"success"},{"item":"jquery-migrate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mockjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-mouse-exit","response":"success"},{"item":"jquery-mousewheel","response":"success"},{"item":"jquery-next-id","response":"success"},{"item":"jquery-param","response":"success"},{"item":"jquery-slimscroll","response":"success"},{"item":"jquery-slugify","response":"success"},{"item":"jquery-sortable","response":"success"},{"item":"jquery-steps","response":"success"},{"item":"jquery-sticky","response":"success"},{"item":"jquery-tags-input","response":"success"},{"item":"jquery-timeentry","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toast-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-toastmessage-plugin","response":"success"},{"item":"jquery-truncate-html","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-typeahead","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-urlparam","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery-validation-unobtrusive","response":"success"},{"item":"jquery.address","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.appear","response":"success"},{"item":"jquery.are-you-sure","response":"success"},{"item":"jquery.autosize","response":"success"},{"item":"jquery.base64","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bbq","response":"success"},{"item":"jquery.blockui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"jquery.bootstrap.wizard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.browser","response":"success"},{"item":"jquery.cleditor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.clientsidelogging","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.colorpicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.contextmenu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.cookie","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.customselect","response":"success"},{"item":"jquery.cycle","response":"success"},{"item":"jquery.cycle2","response":"success"},{"item":"jquery.dropotron","response":"success"},{"item":"jquery.dynatree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.elang","response":"success"},{"item":"jquery.fancytree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fileupload","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.filtertable","response":"success"},{"item":"jquery.finger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.flagstrap","response":"success"},{"item":"jquery.form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.fullscreen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n"},{"item":"jquery.gridster","response":"success"},{"item":"jquery.growl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"jquery.highlight-bartaz","response":"success"},{"item":"jquery.jnotify","response":"success"},{"item":"jquery.joyride","response":"success"},{"item":"jquery.jsignature","response":"success"},{"item":"jquery.leanmodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.livestampjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"jquery.menuaim","response":"success"},{"item":"jquery.mmenu","response":"success"},{"item":"jquery.nicescroll","response":"success"},{"item":"jquery.notify","response":"success"},{"item":"jquery.notifybar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.noty","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'kind' of undefined\n"},{"item":"jquery.payment","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.pin","response":"success"},{"item":"jquery.pjax","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.placeholder","response":"success"},{"item":"jquery.pnotify","response":"success"},{"item":"jquery.postmessage","response":"success"},{"item":"jquery.prettyphoto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.qrcode","response":"success"},{"item":"jquery.rateit","response":"success"},{"item":"jquery.rowgrid","response":"success"},{"item":"jquery.scrollto","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplemodal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"jquery.simplepagination","response":"success"},{"item":"jquery.simulate","response":"success"},{"item":"jquery.soap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.sortelements","response":"success"},{"item":"jquery.stickem","response":"success"},{"item":"jquery.superlink","response":"success"},{"item":"jquery.tagsmanager","response":"success"},{"item":"jquery.tile","response":"success"},{"item":"jquery.timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.timer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.tinycarousel","response":"success"},{"item":"jquery.tinyscrollbar","response":"success"},{"item":"jquery.tipsy","response":"success"},{"item":"jquery.tools","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.total-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.transit","response":"success"},{"item":"jquery.ui.datetimepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.ui.layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.uniform","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.validation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.watermark","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquery.window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jquerymobile","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"jqueryui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"js-base64","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"js-beautify","response":"success"},{"item":"js-captcha","response":"success"},{"item":"js-clipper","response":"success"},{"item":"js-combinatorics","response":"success"},{"item":"js-cookie","response":"success"},{"item":"js-data-angular","response":"success"},{"item":"js-fixtures","response":"success"},{"item":"js-git","response":"success"},{"item":"js-levenshtein","response":"success"},{"item":"js-md5","response":"success"},{"item":"js-money","response":"success"},{"item":"js-nacl","response":"success"},{"item":"js-priority-queue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"js-quantities","response":"success"},{"item":"js-roman-numerals","response":"success"},{"item":"js-schema","response":"success"},{"item":"js-search","response":"success"},{"item":"js-sha512","response":"success"},{"item":"js-string-escape","response":"success"},{"item":"js-to-java","response":"success"},{"item":"js-url","response":"success"},{"item":"js-yaml","response":"success"},{"item":"js.spec","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsbn","response":"success"},{"item":"jschannel","response":"success"},{"item":"jscodeshift","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"jscrollpane","response":"success"},{"item":"jsdeferred","response":"success"},{"item":"jsdoc-to-markdown","response":"success"},{"item":"jsdom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsdom-global","response":"success"},{"item":"jsen","response":"success"},{"item":"jsend","response":"success"},{"item":"jsesc","response":"success"},{"item":"jsfl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'kind' of undefined\n"},{"item":"jsforce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsftp","response":"success"},{"item":"jsgraph","response":"success"},{"item":"jshamcrest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsmediatags","response":"success"},{"item":"jsmockito","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsnox","response":"success"},{"item":"json-buffer","response":"success"},{"item":"json-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"json-file-plus","response":"success"},{"item":"json-form-data","response":"success"},{"item":"json-js","response":"success"},{"item":"json-merge-patch","response":"success"},{"item":"json-parse-better-errors","response":"success"},{"item":"json-patch","response":"success"},{"item":"json-patch-gen","response":"success"},{"item":"json-pointer","response":"success"},{"item":"json-query","response":"success"},{"item":"json-rpc-random-id","response":"success"},{"item":"json-rpc-ws","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"json-schema","response":"success"},{"item":"json-schema-compare","response":"success"},{"item":"json-schema-merge-allof","response":"success"},{"item":"json-schema-traverse","response":"success"},{"item":"json-server","response":"success"},{"item":"json-socket","response":"success"},{"item":"json-stable-stringify","response":"success"},{"item":"json-stream-stringify","response":"success"},{"item":"json-stringify-safe","response":"success"},{"item":"json-to-ast","response":"success"},{"item":"json2csv","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"json2md","response":"success"},{"item":"json2mq","response":"success"},{"item":"json3","response":"success"},{"item":"json5","response":"success"},{"item":"json8-patch","response":"success"},{"item":"json_ml","response":"success"},{"item":"jsonabc","response":"success"},{"item":"jsonapi-serializer","response":"success"},{"item":"jsoneditor","response":"success"},{"item":"jsoneditor-for-react","response":"success"},{"item":"jsoneditoronline","response":"success"},{"item":"jsonfile","response":"success"},{"item":"jsonic","response":"success"},{"item":"jsonld","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonminify","response":"success"},{"item":"jsonnet","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsonp","response":"success"},{"item":"jsonpack","response":"success"},{"item":"jsonpath","response":"success"},{"item":"jsonpointer","response":"success"},{"item":"jsonquery","response":"success"},{"item":"jsonrpc-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsonstream","response":"success"},{"item":"jsontoxml","response":"success"},{"item":"jsonwebtoken","response":"success"},{"item":"jsonwebtoken-promisified","response":"success"},{"item":"jspath","response":"success"},{"item":"jspdf","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"jsprintmanager","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsqrcode","response":"success"},{"item":"jsqubits","response":"success"},{"item":"jsreport-chrome-pdf","response":"success"},{"item":"jsreport-core","response":"success"},{"item":"jsreport-html-embedded-in-docx","response":"success"},{"item":"jsreport-html-to-xlsx","response":"success"},{"item":"jsreport-jsrender","response":"success"},{"item":"jsreport-phantom-pdf","response":"success"},{"item":"jsreport-xlsx","response":"success"},{"item":"jsrp","response":"success"},{"item":"jsrsasign","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jssha","response":"success"},{"item":"jssip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsspec__jsspec","response":"success"},{"item":"jstimezonedetect","response":"success"},{"item":"jstorage","response":"success"},{"item":"jstree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsts","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"jsuite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"jsum","response":"success"},{"item":"jsuri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"jsurl","response":"success"},{"item":"jsx-chai","response":"success"},{"item":"jszip","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"jug","response":"success"},{"item":"jui","response":"success"},{"item":"jui-core","response":"success"},{"item":"jui-grid","response":"success"},{"item":"jump.js","response":"success"},{"item":"just-clone","response":"success"},{"item":"just-debounce-it","response":"success"},{"item":"just-extend","response":"success"},{"item":"just-map-values","response":"success"},{"item":"just-pick","response":"success"},{"item":"just-safe-get","response":"success"},{"item":"just-safe-set","response":"success"},{"item":"just-snake-case","response":"success"},{"item":"just-throttle","response":"success"},{"item":"jweixin","response":"success"},{"item":"jwk-to-pem","response":"success"},{"item":"jwplayer","response":"success"},{"item":"jws","response":"success"},{"item":"jwt-client","response":"success"},{"item":"jwt-decode","response":"success"},{"item":"jwt-express","response":"success"},{"item":"jwt-simple","response":"success"},{"item":"jwt-then","response":"success"},{"item":"jxon","response":"success"},{"item":"k6","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\n\n../DefinitelyTyped/types/k6/global.d.ts(53,9): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\nnode_modules/typescript/lib/lib.dom.d.ts(19729,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n"},{"item":"kafka-node-avro","response":"success"},{"item":"kamailio-kemi","response":"success"},{"item":"kap-plugin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"karma","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"karma-brief-reporter","response":"success"},{"item":"karma-browserify","response":"success"},{"item":"karma-browserstack-launcher","response":"success"},{"item":"karma-chai","response":"success"},{"item":"karma-chai-sinon","response":"success"},{"item":"karma-chrome-launcher","response":"success"},{"item":"karma-coverage","response":"success"},{"item":"karma-coverage-istanbul-reporter","response":"success"},{"item":"karma-detect-browsers","response":"success"},{"item":"karma-env-preprocessor","response":"success"},{"item":"karma-firefox-launcher","response":"success"},{"item":"karma-fixture","response":"success"},{"item":"karma-html-detailed-reporter","response":"success"},{"item":"karma-ie-launcher","response":"success"},{"item":"karma-jasmine","response":"success"},{"item":"karma-jasmine-html-reporter","response":"success"},{"item":"karma-jasmine-spec-tags","response":"success"},{"item":"karma-jsdom-launcher","response":"success"},{"item":"karma-json-preprocessor","response":"success"},{"item":"karma-json-to-file-reporter","response":"success"},{"item":"karma-junit-reporter","response":"success"},{"item":"karma-material-reporter","response":"success"},{"item":"karma-mocha","response":"success"},{"item":"karma-mocha-reporter","response":"success"},{"item":"karma-parallel","response":"success"},{"item":"karma-remap-coverage","response":"success"},{"item":"karma-snapshot","response":"success"},{"item":"karma-spec-reporter","response":"success"},{"item":"karma-summary-reporter","response":"success"},{"item":"karma-webpack","response":"success"},{"item":"katex","response":"success"},{"item":"kcors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"kd-tree-javascript","response":"success"},{"item":"kdbush","response":"success"},{"item":"kdbxweb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"keen-tracking","response":"success"},{"item":"kefir","response":"success"},{"item":"kendo-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"kerberos","response":"success"},{"item":"keyboardjs","response":"success"},{"item":"keycloak-connect","response":"success"},{"item":"keygrip","response":"success"},{"item":"keymaster","response":"success"},{"item":"keymirror","response":"success"},{"item":"keypress.js","response":"success"},{"item":"keystonejs__adapter-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"keystonejs__adapter-mongoose","response":"success"},{"item":"keystonejs__apollo-helpers","response":"success"},{"item":"keystonejs__app-admin-ui","response":"success"},{"item":"keystonejs__app-graphql","response":"success"},{"item":"keystonejs__app-next","response":"success"},{"item":"keystonejs__app-nuxt","response":"success"},{"item":"keystonejs__app-static","response":"success"},{"item":"keystonejs__auth-passport","response":"success"},{"item":"keystonejs__auth-password","response":"success"},{"item":"keystonejs__email","response":"success"},{"item":"keystonejs__fields","response":"success"},{"item":"keystonejs__file-adapters","response":"success"},{"item":"keystonejs__keystone","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n"},{"item":"keystonejs__list-plugins","response":"success"},{"item":"keystonejs__logger","response":"success"},{"item":"keystonejs__oembed-adapters","response":"success"},{"item":"keystonejs__session","response":"success"},{"item":"keysym","response":"success"},{"item":"keyv","response":"success"},{"item":"keyv__mongo","response":"success"},{"item":"keyv__mysql","response":"success"},{"item":"keyv__postgres","response":"success"},{"item":"keyv__redis","response":"success"},{"item":"keyv__sqlite","response":"success"},{"item":"kii-cloud-sdk","response":"success"},{"item":"kik-browser","response":"success"},{"item":"kind-of","response":"success"},{"item":"kineticjs","response":"success"},{"item":"kissfft-js","response":"success"},{"item":"kiwicom__orbit-design-tokens","response":"success"},{"item":"klaw","response":"success"},{"item":"klaw-sync","response":"success"},{"item":"kms-json","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"knex-db-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knex-postgis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"knockback","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property 'kind' of undefined\n"},{"item":"knockout","response":"success"},{"item":"knockout-amd-helpers","response":"success"},{"item":"knockout-postbox","response":"success"},{"item":"knockout-secure-binding","response":"success"},{"item":"knockout-transformations","response":"success"},{"item":"knockout.deferred.updates","response":"success"},{"item":"knockout.editables","response":"success"},{"item":"knockout.es5","response":"success"},{"item":"knockout.kogrid","response":"success"},{"item":"knockout.mapper","response":"success"},{"item":"knockout.mapping","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"knockout.projections","response":"success"},{"item":"knockout.punches","response":"success"},{"item":"knockout.rx","response":"success"},{"item":"knockout.validation","response":"success"},{"item":"knockout.viewmodel","response":"success"},{"item":"knockstrap","response":"success"},{"item":"knuddels-userapps-api","response":"success"},{"item":"knuth-shuffle","response":"success"},{"item":"ko.plus","response":"success"},{"item":"koa","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-basic-auth","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bodyparser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bouncer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-bunyan-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cache-control","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-compress","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-conditional-get","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-convert","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cookie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-csrf","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-dec-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"koa-docs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ejs","response":"success"},{"item":"koa-etag","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-favicon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-generic-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-graphql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-hbs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-helmet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-html-minifier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-joi-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"koa-joi-router-docs","response":"success"},{"item":"koa-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-json-error","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-log4","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-logger-winston","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-morgan","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-mount","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-passport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"koa-pino-logger","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-proxy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-qs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-range","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-ratelimit-lru","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-redis","response":"success"},{"item":"koa-redis-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-response-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-route","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"koa-send","response":"success"},{"item":"koa-session","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-session-minimal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-sslify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-static-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-views","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-webpack","response":"success"},{"item":"koa-websocket","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa-xml-body","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa2-session-redis","response":"success"},{"item":"koa__cors","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__multer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"koa__router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"koji-tools","response":"success"},{"item":"kolite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/kolite"},{"item":"kompression","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"konami.js","response":"success"},{"item":"kos-core","response":"success"},{"item":"kraken-js","response":"success"},{"item":"kramed","response":"success"},{"item":"kss","response":"success"},{"item":"kue","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"kue-ui-client","response":"success"},{"item":"kurento-client","response":"success"},{"item":"kurento-utils","response":"success"},{"item":"kuromoji","response":"success"},{"item":"kythe","response":"success"},{"item":"lab","response":"success"},{"item":"labeled-stream-splicer","response":"success"},{"item":"lambda-log","response":"success"},{"item":"lambda-tester","response":"success"},{"item":"lambda-wrapper","response":"success"},{"item":"lang.js","response":"success"},{"item":"langmap","response":"success"},{"item":"lasso","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"later","response":"success"},{"item":"latinize","response":"success"},{"item":"latlon-geohash","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"launchpad","response":"success"},{"item":"layui-layer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"layzr.js","response":"success"},{"item":"lazy-brush","response":"success"},{"item":"lazy-property","response":"success"},{"item":"lazy.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lazypipe","response":"success"},{"item":"ldap-filters","response":"success"},{"item":"ldapjs","response":"success"},{"item":"ldapjs-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leadfoot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"leaflet-areaselect","response":"success"},{"item":"leaflet-curve","response":"success"},{"item":"leaflet-deepzoom","response":"success"},{"item":"leaflet-draw","response":"success"},{"item":"leaflet-editable","response":"success"},{"item":"leaflet-fullscreen","response":"success"},{"item":"leaflet-geocoder-mapzen","response":"success"},{"item":"leaflet-geosearch","response":"success"},{"item":"leaflet-gpx","response":"success"},{"item":"leaflet-groupedlayercontrol","response":"success"},{"item":"leaflet-imageoverlay-rotated","response":"success"},{"item":"leaflet-label","response":"success"},{"item":"leaflet-loading","response":"success"},{"item":"leaflet-mouse-position","response":"success"},{"item":"leaflet-polylinedecorator","response":"success"},{"item":"leaflet-providers","response":"success"},{"item":"leaflet-rastercoords","response":"success"},{"item":"leaflet-responsive-popup","response":"success"},{"item":"leaflet-rotatedmarker","response":"success"},{"item":"leaflet-routing-machine","response":"success"},{"item":"leaflet.awesome-markers","response":"success"},{"item":"leaflet.featuregroup.subgroup","response":"success"},{"item":"leaflet.fullscreen","response":"success"},{"item":"leaflet.gridlayer.googlemutant","response":"success"},{"item":"leaflet.heat","response":"success"},{"item":"leaflet.icon.glyph","response":"success"},{"item":"leaflet.locatecontrol","response":"success"},{"item":"leaflet.markercluster","response":"success"},{"item":"leaflet.markercluster.layersupport","response":"success"},{"item":"leaflet.pancontrol","response":"success"},{"item":"leaflet.pm","response":"success"},{"item":"leaflet.polylinemeasure","response":"success"},{"item":"leaflet.utm","response":"success"},{"item":"leakage","response":"success"},{"item":"leapmotionts","response":"success"},{"item":"ledgerhq__hw-transport","response":"success"},{"item":"ledgerhq__hw-transport-node-hid","response":"success"},{"item":"ledgerhq__hw-transport-u2f","response":"success"},{"item":"ledgerhq__hw-transport-webusb","response":"success"},{"item":"legal-eagle","response":"success"},{"item":"lerna-alias","response":"success"},{"item":"lerna-get-packages","response":"success"},{"item":"less","response":"success"},{"item":"less-middleware","response":"success"},{"item":"less2sass","response":"success"},{"item":"lestate","response":"success"},{"item":"level-codec","response":"success"},{"item":"level-js","response":"success"},{"item":"level-sublevel","response":"success"},{"item":"level-ttl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"leveldown","response":"success"},{"item":"levelup","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"levenshtein","response":"success"},{"item":"lexicographic-integer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"libnpmsearch","response":"success"},{"item":"libpq","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"libqp","response":"success"},{"item":"librato-node","response":"success"},{"item":"libsodium-wrappers","response":"success"},{"item":"libsodium-wrappers-sumo","response":"success"},{"item":"libxmljs","response":"success"},{"item":"libxslt","response":"success"},{"item":"license-checker","response":"success"},{"item":"license-checker-webpack-plugin","response":"success"},{"item":"lifeomic__axios-fetch","response":"success"},{"item":"liftoff","response":"success"},{"item":"light-sdk","response":"success"},{"item":"lightpick","response":"success"},{"item":"lightship","response":"success"},{"item":"lil-uri","response":"success"},{"item":"lil-uuid","response":"success"},{"item":"lime-js","response":"success"},{"item":"line-by-line","response":"success"},{"item":"line-column","response":"success"},{"item":"line-reader","response":"success"},{"item":"linear-gradient","response":"success"},{"item":"lingui__core","response":"success"},{"item":"lingui__macro","response":"success"},{"item":"lingui__react","response":"success"},{"item":"linkify-it","response":"success"},{"item":"linkifyjs","response":"success"},{"item":"list-git-remotes","response":"success"},{"item":"list-stream","response":"success"},{"item":"list.js","response":"success"},{"item":"listr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"little-loader","response":"success"},{"item":"lls","response":"success"},{"item":"load-google-maps-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"loadable__component","response":"success"},{"item":"loadable__server","response":"success"},{"item":"loadable__webpack-plugin","response":"success"},{"item":"loader-runner","response":"success"},{"item":"loader-utils","response":"success"},{"item":"loadicons","response":"success"},{"item":"loadjs","response":"success"},{"item":"loadware","response":"success"},{"item":"lobibox","response":"success"},{"item":"local-dynamo","response":"success"},{"item":"local-storage","response":"success"},{"item":"locale","response":"success"},{"item":"localized-countries","response":"success"},{"item":"localizejs-library","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"localtunnel","response":"success"},{"item":"lockfile","response":"success"},{"item":"lockr","response":"success"},{"item":"locks","response":"success"},{"item":"locutus","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lodash","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash-deep","response":"success"},{"item":"lodash-es","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n"},{"item":"lodash-webpack-plugin","response":"success"},{"item":"lodash.add","response":"success"},{"item":"lodash.after","response":"success"},{"item":"lodash.ary","response":"success"},{"item":"lodash.assign","response":"success"},{"item":"lodash.assignin","response":"success"},{"item":"lodash.assigninwith","response":"success"},{"item":"lodash.assignwith","response":"success"},{"item":"lodash.at","response":"success"},{"item":"lodash.attempt","response":"success"},{"item":"lodash.before","response":"success"},{"item":"lodash.bind","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.bindall","response":"success"},{"item":"lodash.bindkey","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.camelcase","response":"success"},{"item":"lodash.capitalize","response":"success"},{"item":"lodash.castarray","response":"success"},{"item":"lodash.ceil","response":"success"},{"item":"lodash.chunk","response":"success"},{"item":"lodash.clamp","response":"success"},{"item":"lodash.clone","response":"success"},{"item":"lodash.clonedeep","response":"success"},{"item":"lodash.clonedeepwith","response":"success"},{"item":"lodash.clonewith","response":"success"},{"item":"lodash.compact","response":"success"},{"item":"lodash.concat","response":"success"},{"item":"lodash.cond","response":"success"},{"item":"lodash.constant","response":"success"},{"item":"lodash.countby","response":"success"},{"item":"lodash.create","response":"success"},{"item":"lodash.curry","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.curryright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.debounce","response":"success"},{"item":"lodash.deburr","response":"success"},{"item":"lodash.defaults","response":"success"},{"item":"lodash.defaultsdeep","response":"success"},{"item":"lodash.defer","response":"success"},{"item":"lodash.delay","response":"success"},{"item":"lodash.difference","response":"success"},{"item":"lodash.differenceby","response":"success"},{"item":"lodash.differencewith","response":"success"},{"item":"lodash.divide","response":"success"},{"item":"lodash.drop","response":"success"},{"item":"lodash.dropright","response":"success"},{"item":"lodash.droprightwhile","response":"success"},{"item":"lodash.dropwhile","response":"success"},{"item":"lodash.endswith","response":"success"},{"item":"lodash.eq","response":"success"},{"item":"lodash.escape","response":"success"},{"item":"lodash.escaperegexp","response":"success"},{"item":"lodash.every","response":"success"},{"item":"lodash.fill","response":"success"},{"item":"lodash.filter","response":"success"},{"item":"lodash.find","response":"success"},{"item":"lodash.findindex","response":"success"},{"item":"lodash.findkey","response":"success"},{"item":"lodash.findlast","response":"success"},{"item":"lodash.findlastindex","response":"success"},{"item":"lodash.findlastkey","response":"success"},{"item":"lodash.first","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.flatmap","response":"success"},{"item":"lodash.flatmapdeep","response":"success"},{"item":"lodash.flatmapdepth","response":"success"},{"item":"lodash.flatten","response":"success"},{"item":"lodash.flattendeep","response":"success"},{"item":"lodash.flattendepth","response":"success"},{"item":"lodash.flip","response":"success"},{"item":"lodash.floor","response":"success"},{"item":"lodash.flow","response":"success"},{"item":"lodash.flowright","response":"success"},{"item":"lodash.foreach","response":"success"},{"item":"lodash.foreachright","response":"success"},{"item":"lodash.forin","response":"success"},{"item":"lodash.forinright","response":"success"},{"item":"lodash.forown","response":"success"},{"item":"lodash.forownright","response":"success"},{"item":"lodash.frompairs","response":"success"},{"item":"lodash.functions","response":"success"},{"item":"lodash.functionsin","response":"success"},{"item":"lodash.get","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"lodash.groupby","response":"success"},{"item":"lodash.gt","response":"success"},{"item":"lodash.gte","response":"success"},{"item":"lodash.has","response":"success"},{"item":"lodash.hasin","response":"success"},{"item":"lodash.head","response":"success"},{"item":"lodash.identity","response":"success"},{"item":"lodash.includes","response":"success"},{"item":"lodash.indexof","response":"success"},{"item":"lodash.initial","response":"success"},{"item":"lodash.inrange","response":"success"},{"item":"lodash.intersection","response":"success"},{"item":"lodash.intersectionby","response":"success"},{"item":"lodash.intersectionwith","response":"success"},{"item":"lodash.invert","response":"success"},{"item":"lodash.invertby","response":"success"},{"item":"lodash.invoke","response":"success"},{"item":"lodash.invokemap","response":"success"},{"item":"lodash.isarguments","response":"success"},{"item":"lodash.isarray","response":"success"},{"item":"lodash.isarraybuffer","response":"success"},{"item":"lodash.isarraylike","response":"success"},{"item":"lodash.isarraylikeobject","response":"success"},{"item":"lodash.isboolean","response":"success"},{"item":"lodash.isbuffer","response":"success"},{"item":"lodash.isdate","response":"success"},{"item":"lodash.iselement","response":"success"},{"item":"lodash.isempty","response":"success"},{"item":"lodash.isequal","response":"success"},{"item":"lodash.isequalwith","response":"success"},{"item":"lodash.iserror","response":"success"},{"item":"lodash.isfinite","response":"success"},{"item":"lodash.isfunction","response":"success"},{"item":"lodash.isinteger","response":"success"},{"item":"lodash.islength","response":"success"},{"item":"lodash.ismap","response":"success"},{"item":"lodash.ismatch","response":"success"},{"item":"lodash.ismatchwith","response":"success"},{"item":"lodash.isnan","response":"success"},{"item":"lodash.isnative","response":"success"},{"item":"lodash.isnil","response":"success"},{"item":"lodash.isnull","response":"success"},{"item":"lodash.isnumber","response":"success"},{"item":"lodash.isobject","response":"success"},{"item":"lodash.isobjectlike","response":"success"},{"item":"lodash.isplainobject","response":"success"},{"item":"lodash.isregexp","response":"success"},{"item":"lodash.issafeinteger","response":"success"},{"item":"lodash.isset","response":"success"},{"item":"lodash.isstring","response":"success"},{"item":"lodash.issymbol","response":"success"},{"item":"lodash.istypedarray","response":"success"},{"item":"lodash.isundefined","response":"success"},{"item":"lodash.isweakmap","response":"success"},{"item":"lodash.isweakset","response":"success"},{"item":"lodash.iteratee","response":"success"},{"item":"lodash.join","response":"success"},{"item":"lodash.kebabcase","response":"success"},{"item":"lodash.keyby","response":"success"},{"item":"lodash.keys","response":"success"},{"item":"lodash.keysin","response":"success"},{"item":"lodash.last","response":"success"},{"item":"lodash.lastindexof","response":"success"},{"item":"lodash.lowercase","response":"success"},{"item":"lodash.lowerfirst","response":"success"},{"item":"lodash.lt","response":"success"},{"item":"lodash.lte","response":"success"},{"item":"lodash.mapkeys","response":"success"},{"item":"lodash.mapvalues","response":"success"},{"item":"lodash.matches","response":"success"},{"item":"lodash.matchesproperty","response":"success"},{"item":"lodash.max","response":"success"},{"item":"lodash.maxby","response":"success"},{"item":"lodash.mean","response":"success"},{"item":"lodash.meanby","response":"success"},{"item":"lodash.memoize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.merge","response":"success"},{"item":"lodash.mergewith","response":"success"},{"item":"lodash.method","response":"success"},{"item":"lodash.methodof","response":"success"},{"item":"lodash.min","response":"success"},{"item":"lodash.minby","response":"success"},{"item":"lodash.mixin","response":"success"},{"item":"lodash.multiply","response":"success"},{"item":"lodash.negate","response":"success"},{"item":"lodash.noop","response":"success"},{"item":"lodash.now","response":"success"},{"item":"lodash.nth","response":"success"},{"item":"lodash.ntharg","response":"success"},{"item":"lodash.omit","response":"success"},{"item":"lodash.omitby","response":"success"},{"item":"lodash.once","response":"success"},{"item":"lodash.orderby","response":"success"},{"item":"lodash.over","response":"success"},{"item":"lodash.overargs","response":"success"},{"item":"lodash.overevery","response":"success"},{"item":"lodash.oversome","response":"success"},{"item":"lodash.pad","response":"success"},{"item":"lodash.padend","response":"success"},{"item":"lodash.padstart","response":"success"},{"item":"lodash.parseint","response":"success"},{"item":"lodash.partial","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partialright","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"lodash.partition","response":"success"},{"item":"lodash.pick","response":"success"},{"item":"lodash.pickby","response":"success"},{"item":"lodash.property","response":"success"},{"item":"lodash.propertyof","response":"success"},{"item":"lodash.pull","response":"success"},{"item":"lodash.pullall","response":"success"},{"item":"lodash.pullallby","response":"success"},{"item":"lodash.pullallwith","response":"success"},{"item":"lodash.pullat","response":"success"},{"item":"lodash.random","response":"success"},{"item":"lodash.range","response":"success"},{"item":"lodash.rangeright","response":"success"},{"item":"lodash.rearg","response":"success"},{"item":"lodash.reduce","response":"success"},{"item":"lodash.reduceright","response":"success"},{"item":"lodash.reject","response":"success"},{"item":"lodash.remove","response":"success"},{"item":"lodash.repeat","response":"success"},{"item":"lodash.replace","response":"success"},{"item":"lodash.rest","response":"success"},{"item":"lodash.result","response":"success"},{"item":"lodash.reverse","response":"success"},{"item":"lodash.round","response":"success"},{"item":"lodash.sample","response":"success"},{"item":"lodash.samplesize","response":"success"},{"item":"lodash.set","response":"success"},{"item":"lodash.setwith","response":"success"},{"item":"lodash.shuffle","response":"success"},{"item":"lodash.size","response":"success"},{"item":"lodash.slice","response":"success"},{"item":"lodash.snakecase","response":"success"},{"item":"lodash.some","response":"success"},{"item":"lodash.sortby","response":"success"},{"item":"lodash.sortedindex","response":"success"},{"item":"lodash.sortedindexby","response":"success"},{"item":"lodash.sortedindexof","response":"success"},{"item":"lodash.sortedlastindex","response":"success"},{"item":"lodash.sortedlastindexby","response":"success"},{"item":"lodash.sortedlastindexof","response":"success"},{"item":"lodash.sorteduniq","response":"success"},{"item":"lodash.sorteduniqby","response":"success"},{"item":"lodash.split","response":"success"},{"item":"lodash.spread","response":"success"},{"item":"lodash.startcase","response":"success"},{"item":"lodash.startswith","response":"success"},{"item":"lodash.stubfalse","response":"success"},{"item":"lodash.stubtrue","response":"success"},{"item":"lodash.subtract","response":"success"},{"item":"lodash.sum","response":"success"},{"item":"lodash.sumby","response":"success"},{"item":"lodash.tail","response":"success"},{"item":"lodash.take","response":"success"},{"item":"lodash.takeright","response":"success"},{"item":"lodash.takerightwhile","response":"success"},{"item":"lodash.takewhile","response":"success"},{"item":"lodash.template","response":"success"},{"item":"lodash.throttle","response":"success"},{"item":"lodash.times","response":"success"},{"item":"lodash.toarray","response":"success"},{"item":"lodash.tofinite","response":"success"},{"item":"lodash.tointeger","response":"success"},{"item":"lodash.tolength","response":"success"},{"item":"lodash.tolower","response":"success"},{"item":"lodash.tonumber","response":"success"},{"item":"lodash.topairs","response":"success"},{"item":"lodash.topairsin","response":"success"},{"item":"lodash.topath","response":"success"},{"item":"lodash.toplainobject","response":"success"},{"item":"lodash.tosafeinteger","response":"success"},{"item":"lodash.tostring","response":"success"},{"item":"lodash.toupper","response":"success"},{"item":"lodash.transform","response":"success"},{"item":"lodash.trim","response":"success"},{"item":"lodash.trimend","response":"success"},{"item":"lodash.trimstart","response":"success"},{"item":"lodash.truncate","response":"success"},{"item":"lodash.unary","response":"success"},{"item":"lodash.unescape","response":"success"},{"item":"lodash.union","response":"success"},{"item":"lodash.unionby","response":"success"},{"item":"lodash.unionwith","response":"success"},{"item":"lodash.uniq","response":"success"},{"item":"lodash.uniqby","response":"success"},{"item":"lodash.uniqueid","response":"success"},{"item":"lodash.uniqwith","response":"success"},{"item":"lodash.unset","response":"success"},{"item":"lodash.unzip","response":"success"},{"item":"lodash.unzipwith","response":"success"},{"item":"lodash.update","response":"success"},{"item":"lodash.updatewith","response":"success"},{"item":"lodash.uppercase","response":"success"},{"item":"lodash.upperfirst","response":"success"},{"item":"lodash.values","response":"success"},{"item":"lodash.valuesin","response":"success"},{"item":"lodash.without","response":"success"},{"item":"lodash.words","response":"success"},{"item":"lodash.wrap","response":"success"},{"item":"lodash.xor","response":"success"},{"item":"lodash.xorby","response":"success"},{"item":"lodash.xorwith","response":"success"},{"item":"lodash.zip","response":"success"},{"item":"lodash.zipobject","response":"success"},{"item":"lodash.zipobjectdeep","response":"success"},{"item":"lodash.zipwith","response":"success"},{"item":"log-process-errors","response":"success"},{"item":"logat","response":"success"},{"item":"logfmt","response":"success"},{"item":"logg","response":"success"},{"item":"logger","response":"success"},{"item":"loggly","response":"success"},{"item":"login-with-amazon-sdk-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"logrocket-react","response":"success"},{"item":"logrotate-stream","response":"success"},{"item":"lokijs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"lolex","response":"success"},{"item":"long","response":"success"},{"item":"loopback","response":"success"},{"item":"loopback-boot","response":"success"},{"item":"loopbench","response":"success"},{"item":"looper","response":"success"},{"item":"lory.js","response":"success"},{"item":"lossless-json","response":"success"},{"item":"lovefield","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lowdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n"},{"item":"lowlight","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lozad","response":"success"},{"item":"lru-cache","response":"success"},{"item":"lscache","response":"success"},{"item":"lscache","response":"success"},{"item":"ltx","response":"success"},{"item":"luaparse","response":"success"},{"item":"lucene","response":"success"},{"item":"lunr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"lusca","response":"success"},{"item":"luxon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"lwip","response":"success"},{"item":"lyric-parser","response":"success"},{"item":"lyricist","response":"success"},{"item":"lz-string","response":"success"},{"item":"lzma-native","response":"success"},{"item":"macaca-circular-json","response":"success"},{"item":"macrotask","response":"success"},{"item":"magic-number","response":"success"},{"item":"magicsuggest","response":"success"},{"item":"magnet-uri","response":"success"},{"item":"mailcheck","response":"success"},{"item":"maildev","response":"success"},{"item":"mailgen","response":"success"},{"item":"mailgun-js","response":"success"},{"item":"mailparser","response":"success"},{"item":"main-bower-files","response":"success"},{"item":"mainloop.js","response":"success"},{"item":"maker.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"makeup-expander","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"makeup-floating-label","response":"success"},{"item":"makeup-keyboard-trap","response":"success"},{"item":"makeup-prevent-scroll-keys","response":"success"},{"item":"makeup-screenreader-trap","response":"success"},{"item":"mandrill-api","response":"success"},{"item":"mangopay2-nodejs-sdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n"},{"item":"map-to-obj","response":"success"},{"item":"mapbox","response":"success"},{"item":"mapbox-gl","response":"success"},{"item":"mapbox-gl-leaflet","response":"success"},{"item":"mapbox__geo-viewport","response":"success"},{"item":"mapbox__geojson-area","response":"success"},{"item":"mapbox__mapbox-sdk","response":"success"},{"item":"mapbox__polyline","response":"success"},{"item":"mapbox__s3urls","response":"success"},{"item":"mapbox__shelf-pack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"mapbox__sphericalmercator","response":"success"},{"item":"mapbox__tile-cover","response":"success"},{"item":"mapnik","response":"success"},{"item":"mapsjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mariasql","response":"success"},{"item":"mark.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"markdown-draft-js","response":"success"},{"item":"markdown-it","response":"success"},{"item":"markdown-it-anchor","response":"success"},{"item":"markdown-it-container","response":"success"},{"item":"markdown-it-lazy-headers","response":"success"},{"item":"markdown-magic","response":"success"},{"item":"markdown-pdf","response":"success"},{"item":"markdown-table","response":"success"},{"item":"markdown-to-jsx","response":"success"},{"item":"markdownlint","response":"success"},{"item":"marked","response":"success"},{"item":"marked-terminal","response":"success"},{"item":"markedjs__html-differ","response":"success"},{"item":"marker-animate-unobtrusive","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"markitup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"marko","response":"success"},{"item":"maskedinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"masonry-layout","response":"success"},{"item":"massive","response":"success"},{"item":"match-media-mock","response":"success"},{"item":"match-sorter","response":"success"},{"item":"matchdep","response":"success"},{"item":"material-design-lite","response":"success"},{"item":"material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"material-ui-datatables","response":"success"},{"item":"material-ui-pagination","response":"success"},{"item":"material__animation","response":"success"},{"item":"material__auto-init","response":"success"},{"item":"material__base","response":"success"},{"item":"material__checkbox","response":"success"},{"item":"material__chips","response":"success"},{"item":"material__dialog","response":"success"},{"item":"material__dom","response":"success"},{"item":"material__drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__floating-label","response":"success"},{"item":"material__form-field","response":"success"},{"item":"material__grid-list","response":"success"},{"item":"material__icon-toggle","response":"success"},{"item":"material__line-ripple","response":"success"},{"item":"material__linear-progress","response":"success"},{"item":"material__list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"material__notched-outline","response":"success"},{"item":"material__radio","response":"success"},{"item":"material__ripple","response":"success"},{"item":"material__select","response":"success"},{"item":"material__selection-control","response":"success"},{"item":"material__slider","response":"success"},{"item":"material__snackbar","response":"success"},{"item":"material__tab","response":"success"},{"item":"material__tabs","response":"success"},{"item":"material__textfield","response":"success"},{"item":"material__toolbar","response":"success"},{"item":"material__top-app-bar","response":"success"},{"item":"materialize-css","response":"success"},{"item":"math-expression-evaluator","response":"success"},{"item":"math-random","response":"success"},{"item":"math-sign","response":"success"},{"item":"math-trunc","response":"success"},{"item":"math3d","response":"success"},{"item":"mathjax","response":"success"},{"item":"mathjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"matrix-appservice-bridge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"matrix-js-sdk","response":"success"},{"item":"matter-js","response":"success"},{"item":"mcrypt","response":"success"},{"item":"mcustomscrollbar","response":"success"},{"item":"md5","response":"success"},{"item":"md5-file","response":"success"},{"item":"mdast","response":"success"},{"item":"mdns","response":"success"},{"item":"mdurl","response":"success"},{"item":"mdx-js__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"media-typer","response":"success"},{"item":"medium-editor","response":"success"},{"item":"megajs","response":"success"},{"item":"mem-cache","response":"success"},{"item":"mem-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mem-fs-editor","response":"success"},{"item":"memcached","response":"success"},{"item":"memdown","response":"success"},{"item":"memjs","response":"success"},{"item":"memoizee","response":"success"},{"item":"memory-cache","response":"success"},{"item":"memory-fs","response":"success"},{"item":"memory-pager","response":"success"},{"item":"memorystream","response":"success"},{"item":"memwatch-next","response":"success"},{"item":"meow","response":"success"},{"item":"merge-descriptors","response":"success"},{"item":"merge-env","response":"success"},{"item":"merge-images","response":"success"},{"item":"merge-img","response":"success"},{"item":"merge-objects","response":"success"},{"item":"merge-stream","response":"success"},{"item":"merge2","response":"success"},{"item":"mergerino","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"merkle","response":"success"},{"item":"mermaid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mersenne-twister","response":"success"},{"item":"meshblu","response":"success"},{"item":"mess","response":"success"},{"item":"messenger","response":"success"},{"item":"metalsmith","response":"success"},{"item":"meteor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/meteor"},{"item":"meteor-accounts-phone","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-astronomy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-collection-hooks","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"meteor-jboulhous-dev","response":"success"},{"item":"meteor-persistent-session","response":"success"},{"item":"meteor-prime8consulting-oauth2","response":"success"},{"item":"meteor-publish-composite","response":"success"},{"item":"meteor-roles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"meteor-universe-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"method-override","response":"success"},{"item":"methods","response":"success"},{"item":"metric-suffix","response":"success"},{"item":"meyda","response":"success"},{"item":"mfiles","response":"success"},{"item":"micro","response":"success"},{"item":"micro-cors","response":"success"},{"item":"micro-events","response":"success"},{"item":"micromatch","response":"success"},{"item":"micromodal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microrouter","response":"success"},{"item":"microservice-utilities","response":"success"},{"item":"microsoft-ajax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-graph","response":"success"},{"item":"microsoft-live-connect","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microsoft-sdk-soap","response":"success"},{"item":"microsoft__typescript-etw","response":"success"},{"item":"microsoftteams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"microtime","response":"success"},{"item":"migrate-mongo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"milkcocoa","response":"success"},{"item":"millisecond","response":"success"},{"item":"milliseconds","response":"success"},{"item":"mime","response":"success"},{"item":"mime-db","response":"success"},{"item":"mime-types","response":"success"},{"item":"mimos","response":"success"},{"item":"min-document","response":"success"},{"item":"min-indent","response":"success"},{"item":"mina","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"minapp-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/minapp-env/index.d.ts(14,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n../DefinitelyTyped/types/minapp-env/index.d.ts(90,3): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(292,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1088,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(1302,3): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/minapp-env/index.d.ts(4737,11): error TS2300: Duplicate identifier 'IteratorResult'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5543,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Symbol\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5587,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Map\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5591,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakMap\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5595,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Set\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5599,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"WeakSet\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5618,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"GeneratorFunction\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5626,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.toStringTag]' must be of type 'string', but here has type '\"Promise\"'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5630,12): error TS2717: Subsequent property declarations must have the same type. Property '[Symbol.species]' must be of type 'PromiseConstructor', but here has type 'Function'.\n../DefinitelyTyped/types/minapp-env/index.d.ts(5682,3): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es2015.iterable.d.ts(41,6): error TS2300: Duplicate identifier 'IteratorResult'.\nnode_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts(225,14): error TS2300: Duplicate identifier '[Symbol.species]'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: NaN, Infinity, Object, Function, String, Boolean, Number, Math, Date, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Array, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Readonly, Pick, Record, ArrayBuffer, ArrayBufferLike, DataView, Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, PropertyKey, Required, Exclude\n"},{"item":"mini-css-extract-plugin","response":"success"},{"item":"mini-html-webpack-plugin","response":"success"},{"item":"minilog","response":"success"},{"item":"minimal-bit-array","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"minimal-request-promise","response":"success"},{"item":"minimalistic-assert","response":"success"},{"item":"minimatch","response":"success"},{"item":"minimist","response":"success"},{"item":"minimist-options","response":"success"},{"item":"minio","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"minipass","response":"success"},{"item":"miniprogram-wxs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\n\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(28,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(96,5): error TS2374: Duplicate string index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(368,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(493,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1174,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1179,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1333,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/es5.d.ts(1397,5): error TS2375: Duplicate number index signature.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(42,15): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/miniprogram-wxs/index.d.ts(56,15): error TS2451: Cannot redeclare block-scoped variable 'module'.\n../DefinitelyTyped/types/node/globals.d.ts(145,13): error TS2451: Cannot redeclare block-scoped variable 'console'.\n../DefinitelyTyped/types/node/globals.d.ts(168,13): error TS2451: Cannot redeclare block-scoped variable 'module'.\nnode_modules/typescript/lib/lib.es5.d.ts(25,1): error TS6200: Definitions of the following identifiers conflict with those in another file: PropertyKey, ThisParameterType, OmitThisParameter, ClassDecorator, PropertyDecorator, MethodDecorator, ParameterDecorator, PromiseConstructorLike, Partial, Required, Readonly, Pick, Record, Exclude, Extract, Omit, NonNullable, Parameters, ConstructorParameters, ReturnType, InstanceType\n"},{"item":"mirrorx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mithril","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mithril-global","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nMaximum call stack size exceeded\n"},{"item":"mitm","response":"success"},{"item":"mitsobox","response":"success"},{"item":"mixpanel","response":"success"},{"item":"mixpanel-browser","response":"success"},{"item":"mixto","response":"success"},{"item":"mjml","response":"success"},{"item":"mjml-react","response":"success"},{"item":"mkcert","response":"success"},{"item":"mkdirp","response":"success"},{"item":"mkpath","response":"success"},{"item":"ml-levenberg-marquardt","response":"success"},{"item":"mmmagic","response":"success"},{"item":"mobile-messaging-cordova","response":"success"},{"item":"mobx-apollo","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'find' of undefined\n"},{"item":"mocha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"mocha-each","response":"success"},{"item":"mocha-phantomjs","response":"success"},{"item":"mocha-prepare","response":"success"},{"item":"mocha-steps","response":"success"},{"item":"mocha-sugar-free","response":"success"},{"item":"mochaccino","response":"success"},{"item":"mock-aws-s3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"mock-express-request","response":"success"},{"item":"mock-fs","response":"success"},{"item":"mock-knex","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"mock-raf","response":"success"},{"item":"mock-req-res","response":"success"},{"item":"mock-require","response":"success"},{"item":"mockdate","response":"success"},{"item":"mockery","response":"success"},{"item":"mockjs","response":"success"},{"item":"modernizr","response":"success"},{"item":"modesl","response":"success"},{"item":"modular-scale","response":"success"},{"item":"module-alias","response":"success"},{"item":"module-deps","response":"success"},{"item":"moji","response":"success"},{"item":"moment-business","response":"success"},{"item":"moment-business-time","response":"success"},{"item":"moment-duration-format","response":"success"},{"item":"moment-hijri","response":"success"},{"item":"moment-holiday","response":"success"},{"item":"moment-jalaali","response":"success"},{"item":"moment-precise-range-plugin","response":"success"},{"item":"moment-round","response":"success"},{"item":"moment-shortformat","response":"success"},{"item":"moment-strftime2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\n\n../DefinitelyTyped/types/moment-strftime2/index.d.ts(7,26): error TS2307: Cannot find module 'moment'.\n"},{"item":"moment-timezone","response":"success"},{"item":"money-math","response":"success"},{"item":"mongo-sanitize","response":"success"},{"item":"mongodb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"mongodb-queue","response":"success"},{"item":"mongodb-uri","response":"success"},{"item":"mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-auto-increment","response":"success"},{"item":"mongoose-autopopulate","response":"success"},{"item":"mongoose-deep-populate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"mongoose-delete","response":"success"},{"item":"mongoose-geojson-schema","response":"success"},{"item":"mongoose-lean-virtuals","response":"success"},{"item":"mongoose-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-paginate-v2","response":"success"},{"item":"mongoose-promise","response":"success"},{"item":"mongoose-seeder","response":"success"},{"item":"mongoose-sequence","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"mongoose-simple-random","response":"success"},{"item":"mongoose-unique-validator","response":"success"},{"item":"mongorito","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"mongration","response":"success"},{"item":"moo","response":"success"},{"item":"moonjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n"},{"item":"morgan","response":"success"},{"item":"morris.js","response":"success"},{"item":"mosca","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"motion-scroll","response":"success"},{"item":"motor-hat","response":"success"},{"item":"mousetrap","response":"success"},{"item":"move-concurrently","response":"success"},{"item":"moveto","response":"success"},{"item":"moviedb","response":"success"},{"item":"moxios","response":"success"},{"item":"mozilla-readability","response":"success"},{"item":"mozjpeg","response":"success"},{"item":"mpromise","response":"success"},{"item":"mri","response":"success"},{"item":"mrz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"ms","response":"success"},{"item":"msgpack","response":"success"},{"item":"msgpack-lite","response":"success"},{"item":"msgpack5","response":"success"},{"item":"msnodesql","response":"success"},{"item":"mssql","response":"success"},{"item":"mta-h5-analysis","response":"success"},{"item":"mu2","response":"success"},{"item":"mui-datatables","response":"success"},{"item":"muibox","response":"success"},{"item":"muicss","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/muicss"},{"item":"multer","response":"success"},{"item":"multer-gridfs-storage","response":"success"},{"item":"multer-s3","response":"success"},{"item":"multi-progress","response":"success"},{"item":"multi-typeof","response":"success"},{"item":"multiaddr","response":"success"},{"item":"multibase","response":"success"},{"item":"multicodec","response":"success"},{"item":"multimap","response":"success"},{"item":"multiparty","response":"success"},{"item":"multipipe","response":"success"},{"item":"multiplexjs","response":"success"},{"item":"multireducer","response":"success"},{"item":"multisort","response":"success"},{"item":"multistream","response":"success"},{"item":"multivariate-normal","response":"success"},{"item":"multy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"mumath","response":"success"},{"item":"muri","response":"success"},{"item":"murmurhash","response":"success"},{"item":"murmurhash-js","response":"success"},{"item":"murmurhash3js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"musicmatch","response":"success"},{"item":"musicmetadata","response":"success"},{"item":"mustache","response":"success"},{"item":"mustache-express","response":"success"},{"item":"mutexify","response":"success"},{"item":"mv","response":"success"},{"item":"mysql","response":"success"},{"item":"mysql-import","response":"success"},{"item":"mz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"n-readlines","response":"success"},{"item":"n3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"naja","response":"success"},{"item":"named-regexp-groups","response":"success"},{"item":"named-routes","response":"success"},{"item":"nano-equal","response":"success"},{"item":"nanoajax","response":"success"},{"item":"nanoassert","response":"success"},{"item":"nanoevents","response":"success"},{"item":"nanographql","response":"success"},{"item":"nanoid","response":"success"},{"item":"nanomsg","response":"success"},{"item":"nanoscroller","response":"success"},{"item":"nanotimer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"nanp","response":"success"},{"item":"native-toast","response":"success"},{"item":"natural","response":"success"},{"item":"natural-compare","response":"success"},{"item":"natural-compare-lite","response":"success"},{"item":"natural-sort","response":"success"},{"item":"naudiodon","response":"success"},{"item":"naver-whale","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navermaps","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"navigo","response":"success"},{"item":"ncom","response":"success"},{"item":"nconf","response":"success"},{"item":"ncp","response":"success"},{"item":"ndarray","response":"success"},{"item":"ndjson","response":"success"},{"item":"ndn-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"nearley","response":"success"},{"item":"neat-csv","response":"success"},{"item":"nedb","response":"success"},{"item":"nedb-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"needle","response":"success"},{"item":"negotiator","response":"success"},{"item":"neo4j","response":"success"},{"item":"nes","response":"success"},{"item":"nestdb","response":"success"},{"item":"nested-error-stacks","response":"success"},{"item":"net-keepalive","response":"success"},{"item":"net-ticks","response":"success"},{"item":"netconf","response":"success"},{"item":"netease-captcha","response":"success"},{"item":"netlify-identity-widget","response":"success"},{"item":"netmask","response":"success"},{"item":"network-interfaces","response":"success"},{"item":"neverbounce","response":"success"},{"item":"new-relic-browser","response":"success"},{"item":"newline-remove","response":"success"},{"item":"newman","response":"success"},{"item":"newrelic","response":"success"},{"item":"newrelic__winston-enricher","response":"success"},{"item":"nexpect","response":"success"},{"item":"next-nprogress","response":"success"},{"item":"next-redux-saga","response":"success"},{"item":"next-seo","response":"success"},{"item":"next-tick","response":"success"},{"item":"nextgen-events","response":"success"},{"item":"ng-command","response":"success"},{"item":"ng-cordova","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/ng-cordova"},{"item":"ng-dialog","response":"success"},{"item":"ng-facebook","response":"success"},{"item":"ng-file-upload","response":"success"},{"item":"ng-flow","response":"success"},{"item":"ng-grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-i18next","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ng-notify","response":"success"},{"item":"ng-stomp","response":"success"},{"item":"ng-tags-input","response":"success"},{"item":"ngbootbox","response":"success"},{"item":"ngeohash","response":"success"},{"item":"ngkookies","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngmap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ngprogress","response":"success"},{"item":"ngprogress-lite","response":"success"},{"item":"ngreact","response":"success"},{"item":"ngsijs","response":"success"},{"item":"ngstorage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/ngstorage/index.d.ts(41,39): error TS2503: Cannot find namespace 'angular'.\n"},{"item":"ngtoaster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'declarations' of undefined\n"},{"item":"ngwysiwyg","response":"success"},{"item":"nice-try","response":"success"},{"item":"nightmare","response":"success"},{"item":"nightwatch","response":"success"},{"item":"nise","response":"success"},{"item":"nivo-slider","response":"success"},{"item":"no-scroll","response":"success"},{"item":"noble","response":"success"},{"item":"noble-mac","response":"success"},{"item":"nodal","response":"success"},{"item":"node","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'statements' of undefined\n"},{"item":"node-7z","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-abi","response":"success"},{"item":"node-apple-receipt-verify","response":"success"},{"item":"node-array-ext","response":"success"},{"item":"node-browser-history","response":"success"},{"item":"node-calendar","response":"success"},{"item":"node-cleanup","response":"success"},{"item":"node-config-manager","response":"success"},{"item":"node-crate","response":"success"},{"item":"node-cron","response":"success"},{"item":"node-dijkstra","response":"success"},{"item":"node-dir","response":"success"},{"item":"node-dogstatsd","response":"success"},{"item":"node-downloader-helper","response":"success"},{"item":"node-easy-cert","response":"success"},{"item":"node-emoji","response":"success"},{"item":"node-expat","response":"success"},{"item":"node-fetch","response":"success"},{"item":"node-fibers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"node-forge","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-gcm","response":"success"},{"item":"node-geocoder","response":"success"},{"item":"node-getopt","response":"success"},{"item":"node-gettext","response":"success"},{"item":"node-gzip","response":"success"},{"item":"node-hid","response":"success"},{"item":"node-horseman","response":"success"},{"item":"node-hue-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-insights","response":"success"},{"item":"node-int64","response":"success"},{"item":"node-ipc","response":"success"},{"item":"node-jose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-jsfl-runner","response":"success"},{"item":"node-localstorage","response":"success"},{"item":"node-loggly-bulk","response":"success"},{"item":"node-mailjet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-memwatch","response":"success"},{"item":"node-mysql-wrapper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"node-notifier","response":"success"},{"item":"node-observer","response":"success"},{"item":"node-openload","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"node-os-utils","response":"success"},{"item":"node-pdftk","response":"success"},{"item":"node-persist","response":"success"},{"item":"node-phpass","response":"success"},{"item":"node-polyglot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-powershell","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"node-pushnotifications","response":"success"},{"item":"node-ral","response":"success"},{"item":"node-red","response":"success"},{"item":"node-redis-pubsub","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"node-redmine","response":"success"},{"item":"node-resque","response":"success"},{"item":"node-rsa","response":"success"},{"item":"node-sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-sass-middleware","response":"success"},{"item":"node-schedule","response":"success"},{"item":"node-slack","response":"success"},{"item":"node-snap7","response":"success"},{"item":"node-sprite-generator","response":"success"},{"item":"node-ssdp","response":"success"},{"item":"node-ssh","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-static","response":"success"},{"item":"node-statsd","response":"success"},{"item":"node-telegram-bot-api","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"node-timecodes","response":"success"},{"item":"node-uuid","response":"success"},{"item":"node-vagrant","response":"success"},{"item":"node-validator","response":"success"},{"item":"node-vault","response":"success"},{"item":"node-wget-promise","response":"success"},{"item":"node-windows","response":"success"},{"item":"node-wit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-xlsx","response":"success"},{"item":"node-xmpp-client","response":"success"},{"item":"node-xmpp-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zendesk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"node-zookeeper-client","response":"success"},{"item":"node-zopfli","response":"success"},{"item":"node-zopfli-es","response":"success"},{"item":"node_redis","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/node_redis"},{"item":"nodecredstash","response":"success"},{"item":"nodegit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nodejs-license-file","response":"success"},{"item":"nodemailer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"nodemailer-direct-transport","response":"success"},{"item":"nodemailer-mailgun-transport","response":"success"},{"item":"nodemailer-pickup-transport","response":"success"},{"item":"nodemailer-ses-transport","response":"success"},{"item":"nodemailer-smtp-pool","response":"success"},{"item":"nodemailer-smtp-transport","response":"success"},{"item":"nodemailer-stub-transport","response":"success"},{"item":"nodemon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"nodeunit","response":"success"},{"item":"noisejs","response":"success"},{"item":"nomnom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nonogram-solver","response":"success"},{"item":"nopt","response":"success"},{"item":"normalize-jss","response":"success"},{"item":"normalize-package-data","response":"success"},{"item":"normalize-path","response":"success"},{"item":"nosleep.js","response":"success"},{"item":"notie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/notie"},{"item":"notify","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notifyjs","response":"success"},{"item":"notifyjs-browser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nMaximum call stack size exceeded\n"},{"item":"notp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nouislider","response":"success"},{"item":"novnc-core","response":"success"},{"item":"npm","response":"success"},{"item":"npm-cache-filename","response":"success"},{"item":"npm-license-crawler","response":"success"},{"item":"npm-list-author-packages","response":"success"},{"item":"npm-package-arg","response":"success"},{"item":"npm-packlist","response":"success"},{"item":"npm-paths","response":"success"},{"item":"npm-registry-fetch","response":"success"},{"item":"npm-registry-package-info","response":"success"},{"item":"npm-run","response":"success"},{"item":"npm-user-packages","response":"success"},{"item":"npm-which","response":"success"},{"item":"npmlog","response":"success"},{"item":"nprogress","response":"success"},{"item":"ns-api","response":"success"},{"item":"nslog","response":"success"},{"item":"nsqjs","response":"success"},{"item":"nssm","response":"success"},{"item":"ntlm-client","response":"success"},{"item":"nuclear-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n"},{"item":"num2fraction","response":"success"},{"item":"number-is-nan","response":"success"},{"item":"number-to-words","response":"success"},{"item":"numeral","response":"success"},{"item":"numeric","response":"success"},{"item":"numjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"nunjucks-date","response":"success"},{"item":"nuxtjs__auth","response":"success"},{"item":"nvd3","response":"success"},{"item":"nw.gui","response":"success"},{"item":"nw.js","response":"success"},{"item":"nwmatcher","response":"success"},{"item":"nyaapi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"oakdex-pokedex","response":"success"},{"item":"oauth","response":"success"},{"item":"oauth-shim","response":"success"},{"item":"oauth.js","response":"success"},{"item":"oauth2-implicit","response":"success"},{"item":"oauth2-server","response":"success"},{"item":"oauth2orize","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"obelisk.js","response":"success"},{"item":"obj-file-parser","response":"success"},{"item":"obj-str","response":"success"},{"item":"object-assign","response":"success"},{"item":"object-assign-deep","response":"success"},{"item":"object-diff","response":"success"},{"item":"object-fit-images","response":"success"},{"item":"object-hash","response":"success"},{"item":"object-inspect","response":"success"},{"item":"object-joiner","response":"success"},{"item":"object-keys","response":"success"},{"item":"object-keys-mapping","response":"success"},{"item":"object-map","response":"success"},{"item":"object-mapper","response":"success"},{"item":"object-merge","response":"success"},{"item":"object-path","response":"success"},{"item":"object-refs","response":"success"},{"item":"object.getownpropertydescriptors","response":"success"},{"item":"object.omit","response":"success"},{"item":"object.pick","response":"success"},{"item":"objtools","response":"success"},{"item":"oblo-util","response":"success"},{"item":"oboe","response":"success"},{"item":"observe-js","response":"success"},{"item":"obsolete-web","response":"success"},{"item":"oclazyload","response":"success"},{"item":"ofe","response":"success"},{"item":"office-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-js-preview","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"office-runtime","response":"success"},{"item":"offline-js","response":"success"},{"item":"offscreen-canvas","response":"success"},{"item":"offscreencanvas","response":"success"},{"item":"oibackoff","response":"success"},{"item":"oidc-token-manager","response":"success"},{"item":"oja","response":"success"},{"item":"okta__okta-vue","response":"success"},{"item":"ol","response":"success"},{"item":"omelette","response":"success"},{"item":"omggif","response":"success"},{"item":"omit-empty","response":"success"},{"item":"on-finished","response":"success"},{"item":"on-headers","response":"success"},{"item":"on-wake-up","response":"success"},{"item":"once","response":"success"},{"item":"one-time","response":"success"},{"item":"onesignal-cordova-plugin","response":"success"},{"item":"onfleet__node-onfleet","response":"success"},{"item":"oniguruma","response":"success"},{"item":"onionoo","response":"success"},{"item":"ontime","response":"success"},{"item":"open-graph","response":"success"},{"item":"open-wc__testing-karma","response":"success"},{"item":"open-wc__testing-karma-bs","response":"success"},{"item":"open-wc__webpack-import-meta-loader","response":"success"},{"item":"openapi-factory","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opener","response":"success"},{"item":"openfin","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"openid","response":"success"},{"item":"openjscad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"openlayers","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"openpgp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"openssi-websdk","response":"success"},{"item":"openstack-wrapper","response":"success"},{"item":"opentok","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"opentype.js","response":"success"},{"item":"openui5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/openui5"},{"item":"openurl","response":"success"},{"item":"openurl2","response":"success"},{"item":"opossum","response":"success"},{"item":"optics-agent","response":"success"},{"item":"optimist","response":"success"},{"item":"optimize-css-assets-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"oracle__oraclejet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"oracledb","response":"success"},{"item":"orchestrator","response":"success"},{"item":"orderedmap","response":"success"},{"item":"orientjs","response":"success"},{"item":"original","response":"success"},{"item":"os-homedir","response":"success"},{"item":"os-service","response":"success"},{"item":"os-tmpdir","response":"success"},{"item":"os-utils","response":"success"},{"item":"osenv","response":"success"},{"item":"osmosis","response":"success"},{"item":"osmtogeojson","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ospec","response":"success"},{"item":"osrm","response":"success"},{"item":"osrs-json-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ot","response":"success"},{"item":"ouibounce","response":"success"},{"item":"overlayscrollbars","response":"success"},{"item":"overload-protection","response":"success"},{"item":"owasp-password-strength-test","response":"success"},{"item":"owl.carousel","response":"success"},{"item":"owlcarousel","response":"success"},{"item":"p-fifo","response":"success"},{"item":"p-loading","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"p2","response":"success"},{"item":"p5","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"pa11y","response":"success"},{"item":"package-info","response":"success"},{"item":"packery","response":"success"},{"item":"pacote","response":"success"},{"item":"pad-left","response":"success"},{"item":"page","response":"success"},{"item":"page-icon","response":"success"},{"item":"pager__jackrabbit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"paho-mqtt","response":"success"},{"item":"pako","response":"success"},{"item":"palx","response":"success"},{"item":"pangu","response":"success"},{"item":"papaparse","response":"success"},{"item":"parallel-transform","response":"success"},{"item":"paralleljs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parameterize","response":"success"},{"item":"parcel-bundler","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"parcel-env","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'children' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'parent' of types 'Module' and 'Module' are not identical.\n../DefinitelyTyped/types/parcel-env/index.d.ts(167,11): error TS2320: Interface 'NodeModule' cannot simultaneously extend types 'Module' and 'Module'.\n Named property 'require' of types 'Module' and 'Module' are not identical.\n"},{"item":"parent-package-json","response":"success"},{"item":"parents","response":"success"},{"item":"parity-pmd","response":"success"},{"item":"parity-pmr","response":"success"},{"item":"parity-poe","response":"success"},{"item":"parquetjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"parse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"parse-author","response":"success"},{"item":"parse-color","response":"success"},{"item":"parse-filepath","response":"success"},{"item":"parse-full-name","response":"success"},{"item":"parse-git-config","response":"success"},{"item":"parse-github-url","response":"success"},{"item":"parse-glob","response":"success"},{"item":"parse-human-date-range","response":"success"},{"item":"parse-json","response":"success"},{"item":"parse-link-header","response":"success"},{"item":"parse-mockdb","response":"success"},{"item":"parse-numeric-range","response":"success"},{"item":"parse-package-name","response":"success"},{"item":"parse-passwd","response":"success"},{"item":"parse-path","response":"success"},{"item":"parse-prefer-header","response":"success"},{"item":"parse-torrent","response":"success"},{"item":"parse-torrent-file","response":"success"},{"item":"parse-unit","response":"success"},{"item":"parse5","response":"success"},{"item":"parse5-html-rewriting-stream","response":"success"},{"item":"parse5-htmlparser2-tree-adapter","response":"success"},{"item":"parse5-parser-stream","response":"success"},{"item":"parse5-plain-text-conversion-stream","response":"success"},{"item":"parse5-sax-parser","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"parse5-serializer-stream","response":"success"},{"item":"parsecurrency","response":"success"},{"item":"parseurl","response":"success"},{"item":"parsimmon","response":"success"},{"item":"passport","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'ids' of undefined\n"},{"item":"passport-anonymous","response":"success"},{"item":"passport-auth0","response":"success"},{"item":"passport-azure-ad","response":"success"},{"item":"passport-beam","response":"success"},{"item":"passport-bnet","response":"success"},{"item":"passport-cognito","response":"success"},{"item":"passport-discord","response":"success"},{"item":"passport-facebook","response":"success"},{"item":"passport-facebook-token","response":"success"},{"item":"passport-github","response":"success"},{"item":"passport-github2","response":"success"},{"item":"passport-google-oauth","response":"success"},{"item":"passport-google-oauth2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"passport-google-oauth20","response":"success"},{"item":"passport-http","response":"success"},{"item":"passport-http-bearer","response":"success"},{"item":"passport-instagram","response":"success"},{"item":"passport-jwt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"passport-kakao","response":"success"},{"item":"passport-linkedin-oauth2","response":"success"},{"item":"passport-local","response":"success"},{"item":"passport-local-mongoose","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"passport-microsoft","response":"success"},{"item":"passport-naver","response":"success"},{"item":"passport-oauth2","response":"success"},{"item":"passport-oauth2-client-password","response":"success"},{"item":"passport-oauth2-refresh","response":"success"},{"item":"passport-remember-me-extended","response":"success"},{"item":"passport-saml","response":"success"},{"item":"passport-steam","response":"success"},{"item":"passport-strategy","response":"success"},{"item":"passport-twitter","response":"success"},{"item":"passport-unique-token","response":"success"},{"item":"passport-vkontakte","response":"success"},{"item":"passport-windowsauth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"passport.socketio","response":"success"},{"item":"password","response":"success"},{"item":"password-hash","response":"success"},{"item":"password-hash-and-salt","response":"success"},{"item":"path-is-absolute","response":"success"},{"item":"path-is-inside","response":"success"},{"item":"path-parse","response":"success"},{"item":"path-regex","response":"success"},{"item":"pathfinding","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pathjs","response":"success"},{"item":"pathval","response":"success"},{"item":"pathwatcher","response":"success"},{"item":"pause","response":"success"},{"item":"payment","response":"success"},{"item":"paypal-cordova-plugin","response":"success"},{"item":"paypal-rest-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"paystack","response":"success"},{"item":"pbf","response":"success"},{"item":"pbkdf2","response":"success"},{"item":"pdf-fill-form","response":"success"},{"item":"pdf-image","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"pdf-viewer-reactjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"pdf2image","response":"success"},{"item":"pdfjs-dist","response":"success"},{"item":"pdfkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pdfmake","response":"success"},{"item":"pdfobject","response":"success"},{"item":"pebblekitjs","response":"success"},{"item":"peer-dial","response":"success"},{"item":"pegjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pell","response":"success"},{"item":"pem","response":"success"},{"item":"pem-jwk","response":"success"},{"item":"pendo-io-browser","response":"success"},{"item":"perfy","response":"success"},{"item":"permit","response":"success"},{"item":"persona","response":"success"},{"item":"pet-finder-api","response":"success"},{"item":"petit-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pg-copy-streams","response":"success"},{"item":"pg-ears","response":"success"},{"item":"pg-escape","response":"success"},{"item":"pg-format","response":"success"},{"item":"pg-large-object","response":"success"},{"item":"pg-pool","response":"success"},{"item":"pg-query-stream","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"pg-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pgwmodal","response":"success"},{"item":"phantom","response":"success"},{"item":"phantomcss","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phantomjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/phantomjs/index.d.ts(6,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"phoenix","response":"success"},{"item":"phone","response":"success"},{"item":"phone-formatter","response":"success"},{"item":"phoneformat.js","response":"success"},{"item":"phonegap","response":"success"},{"item":"phonegap-facebook-plugin","response":"success"},{"item":"phonegap-nfc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/phonegap-nfc/index.d.ts(459,5): error TS2309: An export assignment cannot be used in a module with other exported elements.\n"},{"item":"phonegap-plugin-barcodescanner","response":"success"},{"item":"phonon","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceExportDeclaration - it will convert to null"},{"item":"photonui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"photoswipe","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"php-serialize","response":"success"},{"item":"physijs","response":"success"},{"item":"pi-camera","response":"success"},{"item":"pi-spi","response":"success"},{"item":"pica","response":"success"},{"item":"pick-deep","response":"success"},{"item":"pick-weight","response":"success"},{"item":"pickadate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"picturefill","response":"success"},{"item":"pid-from-port","response":"success"},{"item":"pidusage","response":"success"},{"item":"pify","response":"success"},{"item":"pigpio","response":"success"},{"item":"pigpio-dht","response":"success"},{"item":"pikaday","response":"success"},{"item":"pikaday-time","response":"success"},{"item":"ping","response":"success"},{"item":"pinkyswear","response":"success"},{"item":"pino","response":"success"},{"item":"pino-http","response":"success"},{"item":"pino-multi-stream","response":"success"},{"item":"pino-std-serializers","response":"success"},{"item":"pinterest-sdk","response":"success"},{"item":"pinyin","response":"success"},{"item":"piwik-tracker","response":"success"},{"item":"pixelmatch","response":"success"},{"item":"pixl-xml","response":"success"},{"item":"pizzip","response":"success"},{"item":"pkcs7-padding","response":"success"},{"item":"pkgcloud","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pkijs","response":"success"},{"item":"places","response":"success"},{"item":"plaid-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"platform","response":"success"},{"item":"playerframework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"playmusic","response":"success"},{"item":"pleasejs","response":"success"},{"item":"plist","response":"success"},{"item":"plotly.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"plugapi","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plugin-error","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"plupload","response":"success"},{"item":"pluralize","response":"success"},{"item":"plurals-cldr","response":"success"},{"item":"png.js","response":"success"},{"item":"pngjs","response":"success"},{"item":"pngjs2","response":"success"},{"item":"pngquant-bin","response":"success"},{"item":"pnpapi","response":"success"},{"item":"podcast","response":"success"},{"item":"podium","response":"success"},{"item":"poi","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"point-in-polygon","response":"success"},{"item":"poker-evaluator","response":"success"},{"item":"pollyjs__adapter","response":"success"},{"item":"pollyjs__adapter-fetch","response":"success"},{"item":"pollyjs__adapter-node-http","response":"success"},{"item":"pollyjs__adapter-puppeteer","response":"success"},{"item":"pollyjs__adapter-xhr","response":"success"},{"item":"pollyjs__core","response":"success"},{"item":"pollyjs__node-server","response":"success"},{"item":"pollyjs__persister","response":"success"},{"item":"pollyjs__persister-fs","response":"success"},{"item":"pollyjs__persister-local-storage","response":"success"},{"item":"pollyjs__persister-rest","response":"success"},{"item":"pollyjs__utils","response":"success"},{"item":"polyfill-service","response":"success"},{"item":"polygon","response":"success"},{"item":"polygons-intersect","response":"success"},{"item":"polylabel","response":"success"},{"item":"polyline","response":"success"},{"item":"polymer","response":"success"},{"item":"polymer-ts","response":"success"},{"item":"popcorn","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property 'kind' of undefined\n"},{"item":"port-numbers","response":"success"},{"item":"portscanner","response":"success"},{"item":"postal","response":"success"},{"item":"postcss-calc","response":"success"},{"item":"postcss-custom-properties","response":"success"},{"item":"postcss-icss-values","response":"success"},{"item":"postcss-import","response":"success"},{"item":"postcss-load-config","response":"success"},{"item":"postcss-modules-extract-imports","response":"success"},{"item":"postcss-modules-local-by-default","response":"success"},{"item":"postcss-modules-resolve-imports","response":"success"},{"item":"postcss-modules-scope","response":"success"},{"item":"postcss-modules-values","response":"success"},{"item":"postcss-nested","response":"success"},{"item":"postcss-reporter","response":"success"},{"item":"postcss-url","response":"success"},{"item":"poster-image","response":"success"},{"item":"postlight__mercury-parser","response":"success"},{"item":"postman-collection","response":"success"},{"item":"postmate","response":"success"},{"item":"pouch-redux-middleware","response":"success"},{"item":"pouchdb","response":"success"},{"item":"pouchdb-adapter-cordova-sqlite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-fruitdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-http","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-idb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-leveldb","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-localstorage","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-memory","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-adapter-node-websql","response":"success"},{"item":"pouchdb-adapter-websql","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-browser","response":"success"},{"item":"pouchdb-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-http","response":"success"},{"item":"pouchdb-live-find","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-mapreduce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-replication","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pouchdb-upsert","response":"success"},{"item":"power-assert","response":"success"},{"item":"power-assert-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"powerapps-component-framework","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/powerapps-component-framework"},{"item":"powerbi-visuals-tools","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"preact-i18n","response":"success"},{"item":"precise","response":"success"},{"item":"precond","response":"success"},{"item":"preferred-pm","response":"success"},{"item":"prefixfree","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"preloadjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prelude-ls","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"prettier-package-json","response":"success"},{"item":"pretty","response":"success"},{"item":"pretty-hrtime","response":"success"},{"item":"pretty-time","response":"success"},{"item":"prettyjson","response":"success"},{"item":"preval.macro","response":"success"},{"item":"primus","response":"success"},{"item":"priorityqueuejs","response":"success"},{"item":"prismic-dom","response":"success"},{"item":"prismjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"private-ip","response":"success"},{"item":"probability-distributions","response":"success"},{"item":"procfs-stats","response":"success"},{"item":"proclaim","response":"success"},{"item":"progress","response":"success"},{"item":"progress-bar-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"progress-stream","response":"success"},{"item":"progressbar","response":"success"},{"item":"progressjs","response":"success"},{"item":"proj4","response":"success"},{"item":"proj4leaflet","response":"success"},{"item":"project-name","response":"success"},{"item":"project-oxford","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"prometheus-gc-stats","response":"success"},{"item":"promise-abortable","response":"success"},{"item":"promise-dag","response":"success"},{"item":"promise-fs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-ftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-ftp-common","response":"success"},{"item":"promise-hash","response":"success"},{"item":"promise-inflight","response":"success"},{"item":"promise-map-limit","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise-memoize","response":"success"},{"item":"promise-nodeify","response":"success"},{"item":"promise-pg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"promise-poller","response":"success"},{"item":"promise-polyfill","response":"success"},{"item":"promise-pool","response":"success"},{"item":"promise-queue","response":"success"},{"item":"promise-retry","response":"success"},{"item":"promise-sequential","response":"success"},{"item":"promise-sftp","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"promise-timeout","response":"success"},{"item":"promise.allsettled","response":"success"},{"item":"promise.prototype.finally","response":"success"},{"item":"promised-ldap","response":"success"},{"item":"promised-temp","response":"success"},{"item":"promisify-node","response":"success"},{"item":"promisify-supertest","response":"success"},{"item":"prompt-sync","response":"success"},{"item":"prompt-sync-history","response":"success"},{"item":"promptly","response":"success"},{"item":"prompts","response":"success"},{"item":"prop-types","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"proper-lockfile","response":"success"},{"item":"proper-url-join","response":"success"},{"item":"properties-reader","response":"success"},{"item":"prosemirror-collab","response":"success"},{"item":"prosemirror-commands","response":"success"},{"item":"prosemirror-dev-tools","response":"success"},{"item":"prosemirror-dropcursor","response":"success"},{"item":"prosemirror-gapcursor","response":"success"},{"item":"prosemirror-history","response":"success"},{"item":"prosemirror-inputrules","response":"success"},{"item":"prosemirror-keymap","response":"success"},{"item":"prosemirror-markdown","response":"success"},{"item":"prosemirror-menu","response":"success"},{"item":"prosemirror-model","response":"success"},{"item":"prosemirror-schema-basic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"prosemirror-schema-list","response":"success"},{"item":"prosemirror-state","response":"success"},{"item":"prosemirror-test-builder","response":"success"},{"item":"prosemirror-transform","response":"success"},{"item":"prosemirror-view","response":"success"},{"item":"protoc-plugin","response":"success"},{"item":"protocol-buffers-schema","response":"success"},{"item":"protocols","response":"success"},{"item":"proton-native","response":"success"},{"item":"protoo-server","response":"success"},{"item":"protractor-browser-logs","response":"success"},{"item":"protractor-helpers","response":"success"},{"item":"protractor-http-mock","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"provinces","response":"success"},{"item":"proxy-addr","response":"success"},{"item":"proxy-from-env","response":"success"},{"item":"proxy-lists","response":"success"},{"item":"proxy-verifier","response":"success"},{"item":"proxyquire","response":"success"},{"item":"ps-tree","response":"success"},{"item":"pseudo-audio-param","response":"success"},{"item":"psl","response":"success"},{"item":"ptomasroos__react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"pty.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"pubnub","response":"success"},{"item":"pubsub-js","response":"success"},{"item":"pug","response":"success"},{"item":"pull-stream","response":"success"},{"item":"pulltorefreshjs","response":"success"},{"item":"pulsar-client","response":"success"},{"item":"pump","response":"success"},{"item":"pumpify","response":"success"},{"item":"punycode","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"puppeteer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"puppeteer-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"purdy","response":"success"},{"item":"pure-render-decorator","response":"success"},{"item":"purifycss-webpack","response":"success"},{"item":"purl","response":"success"},{"item":"pusher-js","response":"success"},{"item":"pusher__chatkit-client","response":"success"},{"item":"pvutils","response":"success"},{"item":"python-shell","response":"success"},{"item":"python-struct","response":"success"},{"item":"q","response":"success"},{"item":"q-io","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"q-retry","response":"success"},{"item":"qhistory","response":"success"},{"item":"qiniu-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"qlik-engineapi","response":"success"},{"item":"qlik-visualizationextensions","response":"success"},{"item":"qr-image","response":"success"},{"item":"qrcode","response":"success"},{"item":"qrcode-svg","response":"success"},{"item":"qrcode.react","response":"success"},{"item":"qs","response":"success"},{"item":"qs-middleware","response":"success"},{"item":"qtip2","response":"success"},{"item":"querystringify","response":"success"},{"item":"quick-hash","response":"success"},{"item":"quill","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\n\n../DefinitelyTyped/types/quill/node_modules/quill-delta/dist/Delta.d.ts(1,8): error TS1259: Module '\"/home/runner/work/ts-auto-mock/ts-auto-mock/DefinitelyTyped/types/quill/node_modules/fast-diff/diff\"' can only be default-imported using the 'esModuleInterop' flag\n"},{"item":"quixote","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"qunit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"quoted-printable","response":"success"},{"item":"qwest","response":"success"},{"item":"r-script","response":"success"},{"item":"rabbit.js","response":"success"},{"item":"rabbitmq-schema","response":"success"},{"item":"radium","response":"success"},{"item":"radius","response":"success"},{"item":"radix64","response":"success"},{"item":"raf","response":"success"},{"item":"raf-schd","response":"success"},{"item":"ramda","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"random","response":"success"},{"item":"random-boolean","response":"success"},{"item":"random-bytes","response":"success"},{"item":"random-normal","response":"success"},{"item":"random-number","response":"success"},{"item":"random-seed","response":"success"},{"item":"random-string","response":"success"},{"item":"random-useragent","response":"success"},{"item":"randombytes","response":"success"},{"item":"randomcolor","response":"success"},{"item":"randomstring","response":"success"},{"item":"range-parser","response":"success"},{"item":"range_check","response":"success"},{"item":"rangy","response":"success"},{"item":"rangyinputs","response":"success"},{"item":"ranjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raphael","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"rappid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rascal","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rasha","response":"success"},{"item":"raspi","response":"success"},{"item":"raspi-board","response":"success"},{"item":"raspi-gpio","response":"success"},{"item":"raspi-i2c","response":"success"},{"item":"raspi-led","response":"success"},{"item":"raspi-onewire","response":"success"},{"item":"raspi-peripheral","response":"success"},{"item":"raspi-pwm","response":"success"},{"item":"raspi-serial","response":"success"},{"item":"raspi-soft-pwm","response":"success"},{"item":"rate-limit-redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"ratelimiter","response":"success"},{"item":"raty","response":"success"},{"item":"raven","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raven-for-redux","response":"success"},{"item":"rax","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"raygun","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"raygun4js","response":"success"},{"item":"rbac-a","response":"success"},{"item":"rbush","response":"success"},{"item":"rc","response":"success"},{"item":"rc-select","response":"success"},{"item":"rc-slider","response":"success"},{"item":"rc-steps","response":"success"},{"item":"rc-switch","response":"success"},{"item":"rc-time-picker","response":"success"},{"item":"rc-tooltip","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rc-tree","response":"success"},{"item":"rcloader","response":"success"},{"item":"rdf-data-model","response":"success"},{"item":"rdf-dataset-ext","response":"success"},{"item":"rdf-dataset-indexed","response":"success"},{"item":"rdf-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"rdf-js","response":"success"},{"item":"rdf-transform-triple-to-quad","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__dataset","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'ids' of undefined\n"},{"item":"rdfjs__express-handler","response":"success"},{"item":"rdfjs__fetch","response":"success"},{"item":"rdfjs__fetch-lite","response":"success"},{"item":"rdfjs__formats-common","response":"success"},{"item":"rdfjs__namespace","response":"success"},{"item":"rdfjs__parser-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__parser-n3","response":"success"},{"item":"rdfjs__serializer-jsonld","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__serializer-jsonld-ext","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__sink-map","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"rdfjs__term-set","response":"success"},{"item":"rdfjs__to-ntriples","response":"success"},{"item":"rdflib","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"re-base","response":"success"},{"item":"reach__alert","response":"success"},{"item":"reach__alert-dialog","response":"success"},{"item":"reach__auto-id","response":"success"},{"item":"reach__combobox","response":"success"},{"item":"reach__dialog","response":"success"},{"item":"reach__menu-button","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reach__rect","response":"success"},{"item":"reach__router","response":"success"},{"item":"reach__skip-nav","response":"success"},{"item":"reach__tabs","response":"success"},{"item":"reach__tooltip","response":"success"},{"item":"reach__utils","response":"success"},{"item":"reach__visually-hidden","response":"success"},{"item":"reach__window-size","response":"success"},{"item":"react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-adal","response":"success"},{"item":"react-adaptive-hooks","response":"success"},{"item":"react-add-to-calendar","response":"success"},{"item":"react-addons-create-fragment","response":"success"},{"item":"react-addons-css-transition-group","response":"success"},{"item":"react-addons-linked-state-mixin","response":"success"},{"item":"react-addons-perf","response":"success"},{"item":"react-addons-pure-render-mixin","response":"success"},{"item":"react-addons-shallow-compare","response":"success"},{"item":"react-addons-test-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-addons-transition-group","response":"success"},{"item":"react-addons-update","response":"success"},{"item":"react-albus","response":"success"},{"item":"react-alert","response":"success"},{"item":"react-amplitude","response":"success"},{"item":"react-animate-on-scroll","response":"success"},{"item":"react-app","response":"success"},{"item":"react-aria-live","response":"success"},{"item":"react-aria-menubutton","response":"success"},{"item":"react-aria-modal","response":"success"},{"item":"react-audio-player","response":"success"},{"item":"react-autocomplete","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"react-autosuggest","response":"success"},{"item":"react-avatar-editor","response":"success"},{"item":"react-axe","response":"success"},{"item":"react-beautiful-dnd","response":"success"},{"item":"react-beforeunload","response":"success"},{"item":"react-better-password","response":"success"},{"item":"react-big-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-big-scheduler","response":"success"},{"item":"react-blessed","response":"success"},{"item":"react-body-classname","response":"success"},{"item":"react-bootstrap","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-bootstrap-date-picker","response":"success"},{"item":"react-bootstrap-daterangepicker","response":"success"},{"item":"react-bootstrap-table","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"react-bootstrap-table-next","response":"success"},{"item":"react-bootstrap-table2-filter","response":"success"},{"item":"react-bootstrap-table2-paginator","response":"success"},{"item":"react-bootstrap-table2-toolkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-bootstrap-typeahead","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-breadcrumbs","response":"success"},{"item":"react-breadcrumbs-dynamic","response":"success"},{"item":"react-broadcast","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-burger-menu","response":"success"},{"item":"react-bytesize-icons","response":"success"},{"item":"react-cache","response":"success"},{"item":"react-calendar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-calendar-heatmap","response":"success"},{"item":"react-calendar-timeline","response":"success"},{"item":"react-canvas-draw","response":"success"},{"item":"react-cartographer","response":"success"},{"item":"react-chat-widget","response":"success"},{"item":"react-click-outside","response":"success"},{"item":"react-click-outside-hook","response":"success"},{"item":"react-close-on-escape","response":"success"},{"item":"react-codemirror","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-coinhive","response":"success"},{"item":"react-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-color","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-confirm","response":"success"},{"item":"react-cookies","response":"success"},{"item":"react-copy-to-clipboard","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-copy-write","response":"success"},{"item":"react-count-to","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-countdown-circle-timer","response":"success"},{"item":"react-countup","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"react-credit-cards","response":"success"},{"item":"react-cropper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-css-collapse","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-css-modules","response":"success"},{"item":"react-css-transition-replace","response":"success"},{"item":"react-csv","response":"success"},{"item":"react-currency-formatter","response":"success"},{"item":"react-custom-scrollbars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-d3-graph","response":"success"},{"item":"react-data-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"react-datagrid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nMaximum call stack size exceeded\n"},{"item":"react-date-range","response":"success"},{"item":"react-datepicker","response":"success"},{"item":"react-daterange-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nMaximum call stack size exceeded\n"},{"item":"react-dates","response":"success"},{"item":"react-dev-utils","response":"success"},{"item":"react-devtools","response":"success"},{"item":"react-div-100vh","response":"success"},{"item":"react-dnd-multi-backend","response":"success"},{"item":"react-dnd-scrollzone","response":"success"},{"item":"react-document-meta","response":"success"},{"item":"react-document-title","response":"success"},{"item":"react-dom","response":"success"},{"item":"react-dom-factories","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-draft-wysiwyg","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-dragtastic","response":"success"},{"item":"react-dynamic-number","response":"success"},{"item":"react-easy-chart","response":"success"},{"item":"react-easy-crop","response":"success"},{"item":"react-editext","response":"success"},{"item":"react-elemental","response":"success"},{"item":"react-email-editor","response":"success"},{"item":"react-event-listener","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-fa","response":"success"},{"item":"react-facebook-login","response":"success"},{"item":"react-facebook-login-component","response":"success"},{"item":"react-fade-in","response":"success"},{"item":"react-faux-dom","response":"success"},{"item":"react-file-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-file-reader-input","response":"success"},{"item":"react-filepond","response":"success"},{"item":"react-final-form-listeners","response":"success"},{"item":"react-flag-icon-css","response":"success"},{"item":"react-flags-select","response":"success"},{"item":"react-flatpickr","response":"success"},{"item":"react-flex","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-flexr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"react-fontawesome","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"react-form","response":"success"},{"item":"react-foundation","response":"success"},{"item":"react-frame-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-frontload","response":"success"},{"item":"react-gamepad","response":"success"},{"item":"react-gateway","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-geosuggest","response":"success"},{"item":"react-github-button","response":"success"},{"item":"react-global-configuration","response":"success"},{"item":"react-google-login-component","response":"success"},{"item":"react-google-maps-loader","response":"success"},{"item":"react-google-places-suggest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-google-recaptcha","response":"success"},{"item":"react-gravatar","response":"success"},{"item":"react-grid-layout","response":"success"},{"item":"react-gtm-module","response":"success"},{"item":"react-hamburger-menu","response":"success"},{"item":"react-hammerjs","response":"success"},{"item":"react-headroom","response":"success"},{"item":"react-helmet","response":"success"},{"item":"react-helmet-with-visor","response":"success"},{"item":"react-highcharts","response":"success"},{"item":"react-highlight","response":"success"},{"item":"react-highlight-words","response":"success"},{"item":"react-highlight.js","response":"success"},{"item":"react-highlighter","response":"success"},{"item":"react-holder","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"react-hook-mousetrap","response":"success"},{"item":"react-hooks-helper","response":"success"},{"item":"react-howler","response":"success"},{"item":"react-html-parser","response":"success"},{"item":"react-hyperscript","response":"success"},{"item":"react-icofont","response":"success"},{"item":"react-icon-base","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-image-crop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"react-image-fallback","response":"success"},{"item":"react-image-gallery","response":"success"},{"item":"react-image-magnify","response":"success"},{"item":"react-imageloader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-images","response":"success"},{"item":"react-imgix","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-imgpro","response":"success"},{"item":"react-immutable-proptypes","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-infinite","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-calendar","response":"success"},{"item":"react-infinite-scroll-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"react-infinite-scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-input-autosize","response":"success"},{"item":"react-input-calendar","response":"success"},{"item":"react-input-mask","response":"success"},{"item":"react-inspector","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-instantsearch","response":"success"},{"item":"react-instantsearch-core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-instantsearch-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-interactive","response":"success"},{"item":"react-intl-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-is","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-is-deprecated","response":"success"},{"item":"react-js-pagination","response":"success"},{"item":"react-json","response":"success"},{"item":"react-json-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n"},{"item":"react-jsonschema-form","response":"success"},{"item":"react-kawaii","response":"success"},{"item":"react-lazy-load-image-component","response":"success"},{"item":"react-lazyload","response":"success"},{"item":"react-lazylog","response":"success"},{"item":"react-leaflet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-leaflet-markercluster","response":"success"},{"item":"react-leaflet-sidebarv2","response":"success"},{"item":"react-lifecycle-component","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-lifecycles-compat","response":"success"},{"item":"react-linkify","response":"success"},{"item":"react-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-loadable","response":"success"},{"item":"react-loadable-visibility","response":"success"},{"item":"react-loader","response":"success"},{"item":"react-loader-spinner","response":"success"},{"item":"react-lottie","response":"success"},{"item":"react-mailchimp-subscribe","response":"success"},{"item":"react-map-gl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-maskedinput","response":"success"},{"item":"react-material-ui-form-validator","response":"success"},{"item":"react-mathquill","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-mce","response":"success"},{"item":"react-mdl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nMaximum call stack size exceeded\n"},{"item":"react-measure","response":"success"},{"item":"react-medium-image-zoom","response":"success"},{"item":"react-mentions","response":"success"},{"item":"react-messenger-checkbox","response":"success"},{"item":"react-mic","response":"success"},{"item":"react-mixin","response":"success"},{"item":"react-modal","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"react-motion","response":"success"},{"item":"react-motion-loop","response":"success"},{"item":"react-motion-slider","response":"success"},{"item":"react-motion-ui-pack","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-actionsheet","response":"success"},{"item":"react-native-android-taskdescription","response":"success"},{"item":"react-native-app-intro-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-app-link","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-appsflyer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-audio","response":"success"},{"item":"react-native-auth0","response":"success"},{"item":"react-native-autocomplete-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-awesome-card-io","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-background-downloader","response":"success"},{"item":"react-native-background-timer","response":"success"},{"item":"react-native-bluetooth-serial","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendar-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-calendars","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-canvas","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-charts-wrapper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-check-box","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-communications","response":"success"},{"item":"react-native-community__cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-native-custom-tabs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-datawedge-intents","response":"success"},{"item":"react-native-datepicker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-dialogflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-doc-viewer","response":"success"},{"item":"react-native-document-picker","response":"success"},{"item":"react-native-dotenv","response":"success"},{"item":"react-native-draggable-flatlist","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-drawer-layout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-easy-upgrade","response":"success"},{"item":"react-native-elevated-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fbsdk","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-fetch-blob","response":"success"},{"item":"react-native-flip-card","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-form","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-google-signin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-honeywell-scanner","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-htmlview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-huawei-protected-apps","response":"success"},{"item":"react-native-i18n","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-incall-manager","response":"success"},{"item":"react-native-indicators","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-input-spinner","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-joi","response":"success"},{"item":"react-native-keep-awake","response":"success"},{"item":"react-native-keyboard-spacer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-loading-spinner-overlay","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mail","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-maps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-design-searchbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-dropdown","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-kit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-menu","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-textfield","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-material-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-mixpanel","response":"success"},{"item":"react-native-modal-dropdown","response":"success"},{"item":"react-native-modal-filter-picker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-modalbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-multi-slider","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-navbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-orientation","response":"success"},{"item":"react-native-pdf-lib","response":"success"},{"item":"react-native-percentage-circle","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-phone-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-photo-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-platform-touchable","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-popup-dialog","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-privacy-snapshot","response":"success"},{"item":"react-native-push-notification","response":"success"},{"item":"react-native-qrcode","response":"success"},{"item":"react-native-read-more-text","response":"success"},{"item":"react-native-referrer","response":"success"},{"item":"react-native-restart","response":"success"},{"item":"react-native-rss-parser","response":"success"},{"item":"react-native-safari-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scaled-image","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-scrollable-tab-view","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"react-native-sensor-manager","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-settings-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-share-extension","response":"success"},{"item":"react-native-share-menu","response":"success"},{"item":"react-native-signature-capture","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snackbar-component","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-snap-carousel","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sortable-list","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-sqlite-storage","response":"success"},{"item":"react-native-star-rating","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-status-bar-height","response":"success"},{"item":"react-native-svg-charts","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-svg-uri","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-swiper","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-native-tab-navigator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-text-input-mask","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-toast-native","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-touch-id","response":"success"},{"item":"react-native-uuid","response":"success"},{"item":"react-native-uuid-generator","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-vector-icons","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-version-check","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-native-version-number","response":"success"},{"item":"react-native-video","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-video-player","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-view-pdf","response":"success"},{"item":"react-native-webrtc","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-native-zeroconf","response":"success"},{"item":"react-native-zss-rich-text-editor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-no-ssr","response":"success"},{"item":"react-notification-system","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notification-system-redux","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"react-notify-toast","response":"success"},{"item":"react-numeric-input","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"react-offcanvas","response":"success"},{"item":"react-onclickoutside","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-onsenui","response":"success"},{"item":"react-outside-click-handler","response":"success"},{"item":"react-overlays","response":"success"},{"item":"react-paginate","response":"success"},{"item":"react-panelgroup","response":"success"},{"item":"react-pdf","response":"success"},{"item":"react-phone-number-input","response":"success"},{"item":"react-photoswipe","response":"success"},{"item":"react-places-autocomplete","response":"success"},{"item":"react-plaid-link","response":"success"},{"item":"react-plotly.js","response":"success"},{"item":"react-plyr","response":"success"},{"item":"react-pointable","response":"success"},{"item":"react-popover","response":"success"},{"item":"react-portal","response":"success"},{"item":"react-primitives","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-props-decorators","response":"success"},{"item":"react-qr-reader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-query","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-radio-group","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-rangeslider","response":"success"},{"item":"react-recaptcha","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"react-recaptcha-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-reconciler","response":"success"},{"item":"react-redux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-redux-epic","response":"success"},{"item":"react-redux-i18n","response":"success"},{"item":"react-redux-toastr","response":"success"},{"item":"react-relay","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-request","response":"success"},{"item":"react-resizable","response":"success"},{"item":"react-resize-detector","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"react-resolver","response":"success"},{"item":"react-responsive","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-bootstrap","response":"success"},{"item":"react-router-config","response":"success"},{"item":"react-router-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-guard","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-router-hash-link","response":"success"},{"item":"react-router-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-router-navigation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-navigation-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"react-router-param-link","response":"success"},{"item":"react-router-redux","response":"success"},{"item":"react-router-tabs","response":"success"},{"item":"react-rte","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-s-alert","response":"success"},{"item":"react-scroll","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-scroll-into-view-if-needed","response":"success"},{"item":"react-scroll-rotate","response":"success"},{"item":"react-scrollable-anchor","response":"success"},{"item":"react-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"react-scrollbar-size","response":"success"},{"item":"react-scrollspy","response":"success"},{"item":"react-select","response":"success"},{"item":"react-shadow-dom-retarget-events","response":"success"},{"item":"react-share","response":"success"},{"item":"react-show-more","response":"success"},{"item":"react-side-effect","response":"success"},{"item":"react-sidebar","response":"success"},{"item":"react-signature-canvas","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"react-simple-maps","response":"success"},{"item":"react-sizes","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-sketchapp","response":"success"},{"item":"react-slick","response":"success"},{"item":"react-slider","response":"success"},{"item":"react-smooth-scrollbar","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property '0' of undefined\n"},{"item":"react-sortable-tree","response":"success"},{"item":"react-sortable-tree-theme-file-explorer","response":"success"},{"item":"react-sound","response":"success"},{"item":"react-sparklines","response":"success"},{"item":"react-spinkit","response":"success"},{"item":"react-spinner","response":"success"},{"item":"react-splitter-layout","response":"success"},{"item":"react-star-rating-component","response":"success"},{"item":"react-stars","response":"success"},{"item":"react-sticky","response":"success"},{"item":"react-sticky-el","response":"success"},{"item":"react-stickynode","response":"success"},{"item":"react-stripe-elements","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-svg-inline","response":"success"},{"item":"react-svg-pan-zoom","response":"success"},{"item":"react-swf","response":"success"},{"item":"react-swipe","response":"success"},{"item":"react-swipeable-views","response":"success"},{"item":"react-swipeable-views-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-syntax-highlighter","response":"success"},{"item":"react-table","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"react-table-filter","response":"success"},{"item":"react-tabs","response":"success"},{"item":"react-tabs-redux","response":"success"},{"item":"react-tag-autocomplete","response":"success"},{"item":"react-tag-input","response":"success"},{"item":"react-tagcloud","response":"success"},{"item":"react-tagsinput","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"react-tap-event-plugin","response":"success"},{"item":"react-test-renderer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"react-text-mask","response":"success"},{"item":"react-text-truncate","response":"success"},{"item":"react-textarea-autosize","response":"success"},{"item":"react-timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-timeout","response":"success"},{"item":"react-toast-notifications","response":"success"},{"item":"react-toastr","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-toggle","response":"success"},{"item":"react-tooltip","response":"success"},{"item":"react-touch","response":"success"},{"item":"react-tracking","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"react-transition-group","response":"success"},{"item":"react-treeview","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"react-truncate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n"},{"item":"react-twitter-auth","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-typing-animation","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-typist","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-ultimate-pagination","response":"success"},{"item":"react-user-tour","response":"success"},{"item":"react-vega","response":"success"},{"item":"react-vertical-timeline-component","response":"success"},{"item":"react-virtual-keyboard","response":"success"},{"item":"react-virtualized","response":"success"},{"item":"react-virtualized-auto-sizer","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-virtualized-select","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-visibility-sensor","response":"success"},{"item":"react-wait","response":"success"},{"item":"react-weui","response":"success"},{"item":"react-widgets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"react-widgets-moment","response":"success"},{"item":"react-window","response":"success"},{"item":"react-window-infinite-loader","response":"success"},{"item":"react-window-size","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n"},{"item":"react-with-styles","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"react-wow","response":"success"},{"item":"react-youtube","response":"success"},{"item":"react-youtube-embed","response":"success"},{"item":"reactable","response":"success"},{"item":"reactabular-dnd","response":"success"},{"item":"reactabular-sticky","response":"success"},{"item":"reactabular-table","response":"success"},{"item":"reactcss","response":"success"},{"item":"reactour","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"reactstrap","response":"success"},{"item":"read","response":"success"},{"item":"read-package-tree","response":"success"},{"item":"readable-stream","response":"success"},{"item":"readdir-stream","response":"success"},{"item":"readline-sync","response":"success"},{"item":"readline-transform","response":"success"},{"item":"readmore-js","response":"success"},{"item":"reapop","response":"success"},{"item":"rebass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__forms","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebass__grid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rebind-host","response":"success"},{"item":"recaptcha2","response":"success"},{"item":"recase","response":"success"},{"item":"recharts","response":"success"},{"item":"recharts-scale","response":"success"},{"item":"rechoir","response":"success"},{"item":"recluster","response":"success"},{"item":"recompose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"reconnect-core","response":"success"},{"item":"reconnectingwebsocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"recorder-js","response":"success"},{"item":"recurly__recurly-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"recursive-readdir","response":"success"},{"item":"redis","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-errors","response":"success"},{"item":"redis-info","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: EnumMember - it will convert to null"},{"item":"redis-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n"},{"item":"redis-rate-limiter","response":"success"},{"item":"redis-scripto","response":"success"},{"item":"redlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"redux-action","response":"success"},{"item":"redux-action-utils","response":"success"},{"item":"redux-actions","response":"success"},{"item":"redux-api-middleware","response":"success"},{"item":"redux-async-queue","response":"success"},{"item":"redux-auth-wrapper","response":"success"},{"item":"redux-batched-subscribe","response":"success"},{"item":"redux-cablecar","response":"success"},{"item":"redux-debounced","response":"success"},{"item":"redux-devtools","response":"success"},{"item":"redux-devtools-dock-monitor","response":"success"},{"item":"redux-devtools-log-monitor","response":"success"},{"item":"redux-doghouse","response":"success"},{"item":"redux-duck","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-first-router","response":"success"},{"item":"redux-first-router-link","response":"success"},{"item":"redux-first-router-restore-scroll","response":"success"},{"item":"redux-first-routing","response":"success"},{"item":"redux-form","response":"success"},{"item":"redux-immutable","response":"success"},{"item":"redux-immutable-state-invariant","response":"success"},{"item":"redux-infinite-scroll","response":"success"},{"item":"redux-injectable-store","response":"success"},{"item":"redux-localstorage","response":"success"},{"item":"redux-localstorage-debounce","response":"success"},{"item":"redux-localstorage-filter","response":"success"},{"item":"redux-logger","response":"success"},{"item":"redux-mock-store","response":"success"},{"item":"redux-optimistic-ui","response":"success"},{"item":"redux-orm","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n"},{"item":"redux-pack","response":"success"},{"item":"redux-persist-transform-encrypt","response":"success"},{"item":"redux-persist-transform-filter","response":"success"},{"item":"redux-promise","response":"success"},{"item":"redux-promise-listener","response":"success"},{"item":"redux-recycle","response":"success"},{"item":"redux-router","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"redux-saga-routines","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"redux-saga-tester","response":"success"},{"item":"redux-seamless-immutable","response":"success"},{"item":"redux-sentry-middleware","response":"success"},{"item":"redux-shortcuts","response":"success"},{"item":"redux-socket.io","response":"success"},{"item":"redux-state-sync","response":"success"},{"item":"redux-storage","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property 'declarations' of undefined\n"},{"item":"redux-storage-engine-jsurl","response":"success"},{"item":"redux-storage-engine-localstorage","response":"success"},{"item":"redux-test-utils","response":"success"},{"item":"redux-testkit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"redux-ui","response":"success"},{"item":"ref","response":"success"},{"item":"ref-array","response":"success"},{"item":"ref-array-di","response":"success"},{"item":"ref-napi","response":"success"},{"item":"ref-struct","response":"success"},{"item":"ref-struct-di","response":"success"},{"item":"ref-union","response":"success"},{"item":"ref-union-di","response":"success"},{"item":"reflexbox","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"reflux","response":"success"},{"item":"refractor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"refresh-fetch","response":"success"},{"item":"registry-auth-token","response":"success"},{"item":"regression","response":"success"},{"item":"rehype-react","response":"success"},{"item":"relateurl","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property '0' of undefined\n"},{"item":"relaxed-json","response":"success"},{"item":"relay-compiler","response":"success"},{"item":"relay-config","response":"success"},{"item":"relay-runtime","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n"},{"item":"relay-test-utils","response":"success"},{"item":"rellax","response":"success"},{"item":"remarkable","response":"success"},{"item":"remote-origin-url","response":"success"},{"item":"remote-redux-devtools","response":"success"},{"item":"remotedev-serialize","response":"success"},{"item":"remove-markdown","response":"success"},{"item":"rename","response":"success"},{"item":"repeat-element","response":"success"},{"item":"repeat-string","response":"success"},{"item":"repeating","response":"success"},{"item":"replace-ext","response":"success"},{"item":"replacestream","response":"success"},{"item":"request","response":"success"},{"item":"request-as-curl","response":"success"},{"item":"request-debug","response":"success"},{"item":"request-ip","response":"success"},{"item":"request-promise","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"request-promise-native","response":"success"},{"item":"request-stats","response":"success"},{"item":"requestidlecallback","response":"success"},{"item":"requestretry","response":"success"},{"item":"require-dir","response":"success"},{"item":"require-directory","response":"success"},{"item":"require-from-string","response":"success"},{"item":"require-relative","response":"success"},{"item":"requireindex","response":"success"},{"item":"requirejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.11.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'Require', but here has type 'NodeRequire'.\n../DefinitelyTyped/types/node/module.d.ts(57,14): error TS2300: Duplicate identifier 'Module'.\n../DefinitelyTyped/types/requirejs/index.d.ts(38,11): error TS2300: Duplicate identifier 'Module'.\n"},{"item":"requirejs-domready","response":"success"},{"item":"requires-port","response":"success"},{"item":"resemblejs","response":"success"},{"item":"reserved-words","response":"success"},{"item":"reservoir","response":"success"},{"item":"resize-img","response":"success"},{"item":"resize-observer-browser","response":"success"},{"item":"resolve","response":"success"},{"item":"resolve-options","response":"success"},{"item":"resolve-protobuf-schema","response":"success"},{"item":"resourcejs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"response-time","response":"success"},{"item":"responselike","response":"success"},{"item":"rest","response":"success"},{"item":"restangular","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n"},{"item":"restful.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"restify","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restify-cookies","response":"success"},{"item":"restify-cors-middleware","response":"success"},{"item":"restify-errors","response":"success"},{"item":"restify-plugins","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"restler","response":"success"},{"item":"restling","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"rethinkdb","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nMaximum call stack size exceeded\n"},{"item":"retinajs","response":"success"},{"item":"retry","response":"success"},{"item":"retry-as-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"revalidate","response":"success"},{"item":"revalidator","response":"success"},{"item":"reveal","response":"success"},{"item":"rewire","response":"success"},{"item":"rfc2047","response":"success"},{"item":"rfdc","response":"success"},{"item":"rgrove__parse-xml","response":"success"},{"item":"rheostat","response":"success"},{"item":"rickshaw","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/rickshaw"},{"item":"right-align","response":"success"},{"item":"rijndael-js","response":"success"},{"item":"rimraf","response":"success"},{"item":"ringbufferjs","response":"success"},{"item":"riot-api-nodejs","response":"success"},{"item":"riot-games-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"riot-route","response":"success"},{"item":"riotcontrol","response":"success"},{"item":"riotjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nMaximum call stack size exceeded\n"},{"item":"ripemd160","response":"success"},{"item":"rison","response":"success"},{"item":"rivets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rmc-drawer","response":"success"},{"item":"rmfr","response":"success"},{"item":"rn-app-upgrade","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\n\n../DefinitelyTyped/types/react-native/globals.d.ts(40,15): error TS2300: Duplicate identifier 'FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(85,5): error TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'BodyInit', but here has type 'string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData'.\n../DefinitelyTyped/types/react-native/globals.d.ts(112,14): error TS2300: Duplicate identifier 'RequestInfo'.\n../DefinitelyTyped/types/react-native/globals.d.ts(131,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'Response' must be of type '{ new (body?: BodyInit, init?: ResponseInit): Response; prototype: Response; error(): Response; redirect(url: string, status?: number): Response; }', but here has type '{ new (body?: string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | ... 6 more ... | FormData, init?: ResponseInit): Response; prototype: Response; error: () => Response; redirect: (url: string, status?: number) => Response; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(207,5): error TS2717: Subsequent property declarations must have the same type. Property 'abort' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(208,5): error TS2717: Subsequent property declarations must have the same type. Property 'error' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(209,5): error TS2717: Subsequent property declarations must have the same type. Property 'load' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(210,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadend' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(211,5): error TS2717: Subsequent property declarations must have the same type. Property 'loadstart' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(212,5): error TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(213,5): error TS2717: Subsequent property declarations must have the same type. Property 'timeout' must be of type 'ProgressEvent', but here has type 'ProgressEvent'.\n../DefinitelyTyped/types/react-native/globals.d.ts(254,14): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n../DefinitelyTyped/types/react-native/globals.d.ts(259,15): error TS2300: Duplicate identifier 'URLSearchParams'.\n../DefinitelyTyped/types/react-native/globals.d.ts(293,5): error TS2717: Subsequent property declarations must have the same type. Property 'onopen' must be of type '(this: WebSocket, ev: Event) => any', but here has type '() => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(294,5): error TS2717: Subsequent property declarations must have the same type. Property 'onmessage' must be of type '(this: WebSocket, ev: MessageEvent) => any', but here has type '(event: WebSocketMessageEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(295,5): error TS2717: Subsequent property declarations must have the same type. Property 'onerror' must be of type '(this: WebSocket, ev: Event) => any', but here has type '(event: WebSocketErrorEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(296,5): error TS2717: Subsequent property declarations must have the same type. Property 'onclose' must be of type '(this: WebSocket, ev: CloseEvent) => any', but here has type '(event: WebSocketCloseEvent) => void'.\n../DefinitelyTyped/types/react-native/globals.d.ts(299,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'WebSocket' must be of type '{ new (url: string, protocols?: string | string[]): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }', but here has type '{ new (uri: string, protocols?: string | string[], options?: { [optionName: string]: any; headers: { [headerName: string]: string; }; }): WebSocket; prototype: WebSocket; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; readonly OPEN: number; }'.\n../DefinitelyTyped/types/react-native/globals.d.ts(323,15): error TS2300: Duplicate identifier 'AbortSignal'.\n../DefinitelyTyped/types/react-native/globals.d.ts(336,15): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1924,11): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1935,13): error TS2300: Duplicate identifier 'AbortController'.\nnode_modules/typescript/lib/lib.dom.d.ts(1945,11): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(1957,13): error TS2300: Duplicate identifier 'AbortSignal'.\nnode_modules/typescript/lib/lib.dom.d.ts(5710,11): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(5720,13): error TS2300: Duplicate identifier 'FormData'.\nnode_modules/typescript/lib/lib.dom.d.ts(16123,11): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(16156,13): error TS2300: Duplicate identifier 'URLSearchParams'.\nnode_modules/typescript/lib/lib.dom.d.ts(20034,6): error TS2300: Duplicate identifier 'RequestInfo'.\nnode_modules/typescript/lib/lib.dom.d.ts(20227,6): error TS2300: Duplicate identifier 'XMLHttpRequestResponseType'.\n"},{"item":"rn-fetch-blob","response":"success"},{"item":"roarr","response":"success"},{"item":"robust-point-in-polygon","response":"success"},{"item":"rocksdb","response":"success"},{"item":"rockset","response":"success"},{"item":"roll","response":"success"},{"item":"rolling-rate-limiter","response":"success"},{"item":"rollup-plugin-buble","response":"success"},{"item":"rollup-plugin-json","response":"success"},{"item":"rollup-plugin-node-builtins","response":"success"},{"item":"rollup-plugin-node-globals","response":"success"},{"item":"rollup-plugin-peer-deps-external","response":"success"},{"item":"rollup-plugin-postcss","response":"success"},{"item":"rollup-plugin-progress","response":"success"},{"item":"rollup-plugin-size-snapshot","response":"success"},{"item":"rollup-plugin-sourcemaps","response":"success"},{"item":"rollup-plugin-url","response":"success"},{"item":"rollup-plugin-visualizer","response":"success"},{"item":"rollup__plugin-virtual","response":"success"},{"item":"roman-numerals","response":"success"},{"item":"ronomon__crypto-async","response":"success"},{"item":"rosie","response":"success"},{"item":"roslib","response":"success"},{"item":"route-parser","response":"success"},{"item":"routie","response":"success"},{"item":"rox-browser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-node","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rox-react-native","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"royalslider","response":"success"},{"item":"rpio","response":"success"},{"item":"rrc","response":"success"},{"item":"rsmq-worker","response":"success"},{"item":"rsocket-core","response":"success"},{"item":"rsocket-flowable","response":"success"},{"item":"rsocket-tcp-client","response":"success"},{"item":"rsocket-tcp-server","response":"success"},{"item":"rsocket-types","response":"success"},{"item":"rsocket-websocket-client","response":"success"},{"item":"rsocket-websocket-server","response":"success"},{"item":"rss","response":"success"},{"item":"rsvp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertyDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null"},{"item":"rsync","response":"success"},{"item":"rtl-detect","response":"success"},{"item":"rtlcss","response":"success"},{"item":"rtp-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"rtree","response":"success"},{"item":"run-parallel","response":"success"},{"item":"run-parallel-limit","response":"success"},{"item":"run-sequence","response":"success"},{"item":"runes","response":"success"},{"item":"rwlock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"rx","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-angular","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-core","response":"success"},{"item":"rx-core-binding","response":"success"},{"item":"rx-dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-jquery","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n"},{"item":"rx-lite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-aggregates","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-backpressure","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-coincidence","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-experimental","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-joinpatterns","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-testing","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-time","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-lite-virtualtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"rx-node","response":"success"},{"item":"rx.wamp","response":"success"},{"item":"s3-download-stream","response":"success"},{"item":"s3-upload-stream","response":"success"},{"item":"s3-uploader","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"s3rver","response":"success"},{"item":"sade","response":"success"},{"item":"safari-extension","response":"success"},{"item":"safari-extension-content","response":"success"},{"item":"safe-compare","response":"success"},{"item":"safe-json-stringify","response":"success"},{"item":"safe-regex","response":"success"},{"item":"safe-timers","response":"success"},{"item":"safer-buffer","response":"success"},{"item":"sails.io.js","response":"success"},{"item":"sailthru-client","response":"success"},{"item":"saml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"saml2-js","response":"success"},{"item":"saml20","response":"success"},{"item":"samlp","response":"success"},{"item":"sammy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sanctuary","response":"success"},{"item":"sandboxed-module","response":"success"},{"item":"sane","response":"success"},{"item":"sane-email-validation","response":"success"},{"item":"sanitize-html","response":"success"},{"item":"sanitizer","response":"success"},{"item":"sap__xsenv","response":"success"},{"item":"sarif","response":"success"},{"item":"sasl-anonymous","response":"success"},{"item":"sasl-digest-md5","response":"success"},{"item":"sasl-external","response":"success"},{"item":"sasl-plain","response":"success"},{"item":"sasl-scram-sha-1","response":"success"},{"item":"saslmechanisms","response":"success"},{"item":"saslprep","response":"success"},{"item":"sass","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sass-graph","response":"success"},{"item":"sat","response":"success"},{"item":"satnav","response":"success"},{"item":"save-csv","response":"success"},{"item":"sawtooth-sdk","response":"success"},{"item":"sax","response":"success"},{"item":"sax-stream","response":"success"},{"item":"saywhen","response":"success"},{"item":"sbd","response":"success"},{"item":"sc-auth","response":"success"},{"item":"sc-broker","response":"success"},{"item":"sc-broker-cluster","response":"success"},{"item":"sc-channel","response":"success"},{"item":"sc-errors","response":"success"},{"item":"sc-framework-health-check","response":"success"},{"item":"sc-hot-reboot","response":"success"},{"item":"scalike","response":"success"},{"item":"scc-broker-client","response":"success"},{"item":"schedule","response":"success"},{"item":"scheduler","response":"success"},{"item":"schema-registry","response":"success"},{"item":"schwifty","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"scoped-http-client","response":"success"},{"item":"scrambo","response":"success"},{"item":"screeps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"screeps-profiler","response":"success"},{"item":"script-ext-html-webpack-plugin","response":"success"},{"item":"scriptable-ios","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scriptjs","response":"success"},{"item":"scroll","response":"success"},{"item":"scroll-into-view","response":"success"},{"item":"scroll-to-element","response":"success"},{"item":"scrollbooster","response":"success"},{"item":"scroller","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"scrollparent","response":"success"},{"item":"scrollreveal","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"scrolltofixed","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"scrypt","response":"success"},{"item":"scrypt-async","response":"success"},{"item":"scrypt-js","response":"success"},{"item":"scryptsy","response":"success"},{"item":"scss-parser","response":"success"},{"item":"sdp-transform","response":"success"},{"item":"seamless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nMaximum call stack size exceeded\n"},{"item":"seamless-immutable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"season","response":"success"},{"item":"secp256k1","response":"success"},{"item":"secure-json-parse","response":"success"},{"item":"secure-password","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"secure-random-password","response":"success"},{"item":"seed-random","response":"success"},{"item":"seededshuffle","response":"success"},{"item":"seedrandom","response":"success"},{"item":"seen","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"segment-analytics","response":"success"},{"item":"select2","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property 'declarations' of undefined\n"},{"item":"selectables","response":"success"},{"item":"selectize","response":"success"},{"item":"selenium-standalone","response":"success"},{"item":"selenium-webdriver","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"semantic-release","response":"success"},{"item":"semantic-ui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/semantic-ui"},{"item":"semantic-ui-accordion","response":"success"},{"item":"semantic-ui-api","response":"success"},{"item":"semantic-ui-checkbox","response":"success"},{"item":"semantic-ui-dimmer","response":"success"},{"item":"semantic-ui-dropdown","response":"success"},{"item":"semantic-ui-embed","response":"success"},{"item":"semantic-ui-form","response":"success"},{"item":"semantic-ui-modal","response":"success"},{"item":"semantic-ui-nag","response":"success"},{"item":"semantic-ui-popup","response":"success"},{"item":"semantic-ui-progress","response":"success"},{"item":"semantic-ui-rating","response":"success"},{"item":"semantic-ui-search","response":"success"},{"item":"semantic-ui-shape","response":"success"},{"item":"semantic-ui-sidebar","response":"success"},{"item":"semantic-ui-site","response":"success"},{"item":"semantic-ui-sticky","response":"success"},{"item":"semantic-ui-tab","response":"success"},{"item":"semantic-ui-transition","response":"success"},{"item":"semantic-ui-visibility","response":"success"},{"item":"semaphore","response":"success"},{"item":"semver","response":"success"},{"item":"semver-compare","response":"success"},{"item":"semver-sort","response":"success"},{"item":"semver-stable","response":"success"},{"item":"semver-utils","response":"success"},{"item":"sencha_touch","response":"error","message":"RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length exceeded\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it w"},{"item":"send","response":"success"},{"item":"sendmail","response":"success"},{"item":"seneca","response":"success"},{"item":"sentry__webpack-plugin","response":"success"},{"item":"sequelize","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sequelize-cursor-pagination","response":"success"},{"item":"sequelize-fixtures","response":"success"},{"item":"sequencify","response":"success"},{"item":"sequester","response":"success"},{"item":"serialize-javascript","response":"success"},{"item":"serialport","response":"success"},{"item":"serve-favicon","response":"success"},{"item":"serve-handler","response":"success"},{"item":"serve-index","response":"success"},{"item":"serve-static","response":"success"},{"item":"server","response":"success"},{"item":"server-destroy","response":"success"},{"item":"serverless","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"serverless-jest-plugin","response":"success"},{"item":"service-worker-mock","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(15,32): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(26,18): error TS2304: Cannot find name 'Client'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(44,34): error TS2304: Cannot find name 'ServiceWorkerGlobalScopeEventMap'.\n../DefinitelyTyped/types/service-worker-mock/index.d.ts(47,50): error TS2304: Cannot find name 'PushEvent'.\n"},{"item":"servicenow","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow/index.d.ts(71,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"servicenow-london","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/servicenow-london\n../DefinitelyTyped/types/node/globals.d.ts(144,13): error TS2300: Duplicate identifier 'global'.\n../DefinitelyTyped/types/servicenow-london/Workflow.d.ts(1,19): error TS2300: Duplicate identifier 'global'.\n"},{"item":"serviceworker-webpack-plugin","response":"success"},{"item":"session-file-store","response":"success"},{"item":"set-cookie-parser","response":"success"},{"item":"set-interval-async","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"set-link","response":"success"},{"item":"set-value","response":"success"},{"item":"setasap","response":"success"},{"item":"setimmediate","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'statements' of undefined\n"},{"item":"settings","response":"success"},{"item":"setup-polly-jest","response":"success"},{"item":"sha","response":"success"},{"item":"sha.js","response":"success"},{"item":"sha1","response":"success"},{"item":"sha256","response":"success"},{"item":"shallow-equals","response":"success"},{"item":"shallowequal","response":"success"},{"item":"shapefile","response":"success"},{"item":"sharedb","response":"success"},{"item":"sharepoint","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'kind' of undefined\n"},{"item":"sharp","response":"success"},{"item":"shasum","response":"success"},{"item":"shebang-command","response":"success"},{"item":"sheetify","response":"success"},{"item":"shell-escape","response":"success"},{"item":"shell-quote","response":"success"},{"item":"shelljs","response":"success"},{"item":"shelljs-exec-proxy","response":"success"},{"item":"shevyjs","response":"success"},{"item":"shimmer","response":"success"},{"item":"shipit-cli","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shipit-utils","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nMaximum call stack size exceeded\n"},{"item":"shopify-buy","response":"success"},{"item":"shorten-repo-url","response":"success"},{"item":"shortid","response":"success"},{"item":"shot","response":"success"},{"item":"should-sinon","response":"success"},{"item":"showdown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"shpjs","response":"success"},{"item":"shrink-ray","response":"success"},{"item":"shuffle-array","response":"success"},{"item":"shuffle-seed","response":"success"},{"item":"sic-ecies","response":"success"},{"item":"sic-list","response":"success"},{"item":"siema","response":"success"},{"item":"siesta","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sigmajs","response":"success"},{"item":"sigmund","response":"success"},{"item":"signal-exit","response":"success"},{"item":"signale","response":"success"},{"item":"signalfx","response":"success"},{"item":"signalr","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"signalr-no-jquery","response":"success"},{"item":"signals","response":"success"},{"item":"signature_pad","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simmerjs","response":"success"},{"item":"simonwep__selection-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simpl-schema","response":"success"},{"item":"simple-assign","response":"success"},{"item":"simple-cw-node","response":"success"},{"item":"simple-icons","response":"success"},{"item":"simple-lru","response":"success"},{"item":"simple-mock","response":"success"},{"item":"simple-oauth2","response":"success"},{"item":"simple-peer","response":"success"},{"item":"simple-query-string","response":"success"},{"item":"simple-url-cache","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"simple-websocket","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simple-xml","response":"success"},{"item":"simplebar","response":"success"},{"item":"simplecrawler","response":"success"},{"item":"simplemde","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"simplesmtp","response":"success"},{"item":"simplestorage.js","response":"success"},{"item":"simulant","response":"success"},{"item":"single-line-log","response":"success"},{"item":"single-spa-react","response":"success"},{"item":"sinon","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"sinon-as-promised","response":"success"},{"item":"sinon-chai","response":"success"},{"item":"sinon-chrome","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sinon-express-mock","response":"success"},{"item":"sinon-mongoose","response":"success"},{"item":"sinon-stub-promise","response":"success"},{"item":"sinon-test","response":"success"},{"item":"sinonjs__fake-timers","response":"success"},{"item":"sipml","response":"success"},{"item":"sitemap2","response":"success"},{"item":"six-runtime","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sizeof","response":"success"},{"item":"sizzle","response":"success"},{"item":"sjcl","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"skatejs","response":"success"},{"item":"sketchapp","response":"success"},{"item":"ski","response":"success"},{"item":"skmeans","response":"success"},{"item":"skyway","response":"success"},{"item":"slack-mock","response":"success"},{"item":"slack-node","response":"success"},{"item":"slack-winston","response":"success"},{"item":"slackdown","response":"success"},{"item":"slackify-html","response":"success"},{"item":"slate","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-base64-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"slate-html-serializer","response":"success"},{"item":"slate-irc","response":"success"},{"item":"slate-plain-serializer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slate-react","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"sleep","response":"success"},{"item":"slice-ansi","response":"success"},{"item":"slick-carousel","response":"success"},{"item":"slickgrid","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"slideout","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"slimerjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(431,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(432,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(433,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(434,18): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/slimerjs/index.d.ts(435,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"sloc","response":"success"},{"item":"slocket","response":"success"},{"item":"slonik","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"slug","response":"success"},{"item":"sm-crypto","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-fox-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"smart-truncate","response":"success"},{"item":"smartwizard","response":"success"},{"item":"smooth-scroll","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"smoothscroll-polyfill","response":"success"},{"item":"smpte-timecode","response":"success"},{"item":"smshelper","response":"success"},{"item":"smtp-server","response":"success"},{"item":"smtpapi","response":"success"},{"item":"snakecase-keys","response":"success"},{"item":"snappy","response":"success"},{"item":"snapsvg","response":"success"},{"item":"snazzy-info-window","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snekfetch","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property '0' of undefined\n"},{"item":"snowball-stemmers","response":"success"},{"item":"sns-validator","response":"success"},{"item":"sntp","response":"success"},{"item":"socket.io","response":"success"},{"item":"socket.io-client","response":"success"},{"item":"socket.io-emitter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: GetAccessor - it will convert to null"},{"item":"socket.io-file","response":"success"},{"item":"socket.io-p2p","response":"success"},{"item":"socket.io-parser","response":"success"},{"item":"socket.io-redis","response":"success"},{"item":"socket.io.users","response":"success"},{"item":"socketcluster","response":"success"},{"item":"socketcluster-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.8.json\nCannot read property 'declarations' of undefined\n"},{"item":"socketcluster-server","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"socketio-jwt","response":"success"},{"item":"socketio-jwt-auth","response":"success"},{"item":"socketio-wildcard","response":"success"},{"item":"socketty","response":"success"},{"item":"sockjs","response":"success"},{"item":"sockjs-client","response":"success"},{"item":"sodium-native","response":"success"},{"item":"solid-auth-client","response":"success"},{"item":"solid__react","response":"success"},{"item":"solr-client","response":"success"},{"item":"solution-center-communicator","response":"success"},{"item":"sonic-boom","response":"success"},{"item":"sort-array","response":"success"},{"item":"sort-object-keys","response":"success"},{"item":"sortablejs","response":"success"},{"item":"sorted-object","response":"success"},{"item":"sortobject","response":"success"},{"item":"soundjs","response":"success"},{"item":"soundmanager2","response":"success"},{"item":"soupbintcp","response":"success"},{"item":"source-list-map","response":"success"},{"item":"source-map-support","response":"success"},{"item":"space-pen","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nMaximum call stack size exceeded\n"},{"item":"spark-md5","response":"success"},{"item":"sparkpost","response":"success"},{"item":"sparql-http-client","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.9.json\nCannot read property '0' of undefined\n"},{"item":"sparqljs","response":"success"},{"item":"sparse-bitfield","response":"success"},{"item":"spatialite","response":"success"},{"item":"spdx-correct","response":"success"},{"item":"spdx-satisfies","response":"success"},{"item":"spdy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"speakeasy","response":"success"},{"item":"speakingurl","response":"success"},{"item":"spected","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"spectrogram","response":"success"},{"item":"spectrum","response":"success"},{"item":"spellchecker","response":"success"},{"item":"split","response":"success"},{"item":"split.js","response":"success"},{"item":"split2","response":"success"},{"item":"splitpanes","response":"success"},{"item":"splunk-bunyan-logger","response":"success"},{"item":"splunk-logging","response":"success"},{"item":"spotify-api","response":"success"},{"item":"spotify-node-applescript","response":"success"},{"item":"spotify-web-api-node","response":"success"},{"item":"spotify-web-playback-sdk","response":"success"},{"item":"sprintf","response":"success"},{"item":"sprintf-js","response":"success"},{"item":"sql-bricks","response":"success"},{"item":"sql-formatter","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sql-template","response":"success"},{"item":"sql.js","response":"success"},{"item":"sqlanywhere","response":"success"},{"item":"sqlite3","response":"success"},{"item":"sqlite3-promise","response":"success"},{"item":"sqlstring","response":"success"},{"item":"sqs-producer","response":"success"},{"item":"square-connect","response":"success"},{"item":"squirejs","response":"success"},{"item":"squirrelly","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"srp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"ssb-keys","response":"success"},{"item":"ssdeep","response":"success"},{"item":"ssh-key-decrypt","response":"success"},{"item":"ssh2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"ssh2-sftp-client","response":"success"},{"item":"ssh2-streams","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sshpk","response":"success"},{"item":"ssri","response":"success"},{"item":"stack-mapper","response":"success"},{"item":"stack-trace","response":"success"},{"item":"stack-utils","response":"success"},{"item":"stale-lru-cache","response":"success"},{"item":"stampit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"stamplay-js-sdk","response":"success"},{"item":"standard-engine","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"standard-error","response":"success"},{"item":"standard-http-error","response":"success"},{"item":"standard-version","response":"success"},{"item":"start-server-webpack-plugin","response":"success"},{"item":"starwars-names","response":"success"},{"item":"stat-mode","response":"success"},{"item":"static-eval","response":"success"},{"item":"staticmaps","response":"success"},{"item":"stats-lite","response":"success"},{"item":"stats.js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"statsd-client","response":"success"},{"item":"statuses","response":"success"},{"item":"std-mocks","response":"success"},{"item":"stdin","response":"success"},{"item":"stdout-stream","response":"success"},{"item":"steam","response":"success"},{"item":"steam-client","response":"success"},{"item":"steam-login","response":"success"},{"item":"steam-totp","response":"success"},{"item":"steamid","response":"success"},{"item":"steed","response":"success"},{"item":"stemmer","response":"success"},{"item":"sticky-cluster","response":"success"},{"item":"sticky-session","response":"success"},{"item":"stompit","response":"success"},{"item":"stompjs","response":"success"},{"item":"stoppable","response":"success"},{"item":"stopword","response":"success"},{"item":"storage-helper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"store","response":"success"},{"item":"storybook-addon-jsx","response":"success"},{"item":"storybook-react-router","response":"success"},{"item":"storybook-readme","response":"success"},{"item":"storybook__addon-info","response":"success"},{"item":"storybook__polymer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"strange","response":"success"},{"item":"stream-array","response":"success"},{"item":"stream-buffers","response":"success"},{"item":"stream-chain","response":"success"},{"item":"stream-csv-as-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-demux","response":"success"},{"item":"stream-each","response":"success"},{"item":"stream-fork","response":"success"},{"item":"stream-json","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"stream-meter","response":"success"},{"item":"stream-series","response":"success"},{"item":"stream-shift","response":"success"},{"item":"stream-throttle","response":"success"},{"item":"stream-to-array","response":"success"},{"item":"stream-to-promise","response":"success"},{"item":"stream-to-string","response":"success"},{"item":"streaming-json-stringify","response":"success"},{"item":"streamjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"streamtest","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stremio-addon-sdk","response":"success"},{"item":"strftime","response":"success"},{"item":"strict-uri-encode","response":"success"},{"item":"strikeentco__get","response":"success"},{"item":"string","response":"success"},{"item":"string-format","response":"success"},{"item":"string-hash","response":"success"},{"item":"string-pixel-width","response":"success"},{"item":"string-placeholder","response":"success"},{"item":"string-replace-webpack-plugin","response":"success"},{"item":"string-similarity","response":"success"},{"item":"string-strip-html","response":"success"},{"item":"string-template","response":"success"},{"item":"string_score","response":"success"},{"item":"stringify-object","response":"success"},{"item":"strip-color","response":"success"},{"item":"stripe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripe-checkout","response":"success"},{"item":"stripe-v2","response":"success"},{"item":"stripe-v3","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stripejs","response":"success"},{"item":"strman","response":"success"},{"item":"strong-cluster-control","response":"success"},{"item":"strong-error-handler","response":"success"},{"item":"strong-log-transformer","response":"success"},{"item":"strophe","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophe.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"strophejs-plugin-roster","response":"success"},{"item":"struct","response":"success"},{"item":"structured-source","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property '0' of undefined\n"},{"item":"stubby","response":"success"},{"item":"style-search","response":"success"},{"item":"styled-components","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"styled-jsx","response":"success"},{"item":"styled-react-modal","response":"success"},{"item":"styled-system","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styled-system__css","response":"success"},{"item":"styled-system__should-forward-prop","response":"success"},{"item":"styled-system__theme-get","response":"success"},{"item":"styled-theming","response":"success"},{"item":"stylelint","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"stylelint-webpack-plugin","response":"success"},{"item":"stylenames","response":"success"},{"item":"styletron-engine-atomic","response":"success"},{"item":"styletron-react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"styletron-standard","response":"success"},{"item":"stylus","response":"success"},{"item":"subleveldown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"subscribe-ui-event","response":"success"},{"item":"subtitle","response":"success"},{"item":"succinct","response":"success"},{"item":"sudokus","response":"success"},{"item":"suitescript","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"summernote","response":"success"},{"item":"sumo-logger","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"suncalc","response":"success"},{"item":"sunrise-sunset-js","response":"success"},{"item":"superagent","response":"success"},{"item":"superagent-bunyan","response":"success"},{"item":"superagent-no-cache","response":"success"},{"item":"superagent-prefix","response":"success"},{"item":"superagent-proxy","response":"success"},{"item":"supercluster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"supertest","response":"success"},{"item":"supertest-as-promised","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"supports-color","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svg-injector","response":"success"},{"item":"svg-intersections","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"svg-parser","response":"success"},{"item":"svg-path-bounding-box","response":"success"},{"item":"svg-path-parser","response":"success"},{"item":"svg-sprite","response":"success"},{"item":"svg-sprite-loader","response":"success"},{"item":"svg2png","response":"success"},{"item":"svg4everybody","response":"success"},{"item":"svgjs.draggable","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"svgjs.resize","response":"success"},{"item":"svgo","response":"success"},{"item":"svgr__rollup","response":"success"},{"item":"sw-precache","response":"success"},{"item":"sw-precache-webpack-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"swag","response":"success"},{"item":"swagger-express-middleware","response":"success"},{"item":"swagger-express-mw","response":"success"},{"item":"swagger-express-validator","response":"success"},{"item":"swagger-hapi","response":"success"},{"item":"swagger-jsdoc","response":"success"},{"item":"swagger-node-runner","response":"success"},{"item":"swagger-restify-mw","response":"success"},{"item":"swagger-sails-hook","response":"success"},{"item":"swagger-schema-official","response":"success"},{"item":"swagger-stats","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swagger-tools","response":"success"},{"item":"swagger-ui-dist","response":"success"},{"item":"swagger-ui-express","response":"success"},{"item":"swagger-ui-react","response":"success"},{"item":"swaggerize-express","response":"success"},{"item":"swe-validation","response":"success"},{"item":"swfobject","response":"success"},{"item":"swiftclick","response":"success"},{"item":"swig","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"swig-email-templates","response":"success"},{"item":"swipe","response":"success"},{"item":"swiper","response":"success"},{"item":"swipeview","response":"success"},{"item":"switchery","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"swiz","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"sybase-promised","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"sylvester","response":"success"},{"item":"sylvester-es6","response":"success"},{"item":"symbol-tree","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nCannot read property '0' of undefined\n"},{"item":"symlink-or-copy","response":"success"},{"item":"synaptic","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"syntax-error","response":"success"},{"item":"syslog-client","response":"success"},{"item":"systemjs","response":"success"},{"item":"tabbable","response":"success"},{"item":"table","response":"success"},{"item":"table-resolver","response":"success"},{"item":"tableau","response":"success"},{"item":"tableify","response":"success"},{"item":"tablesorter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.18.json\nMaximum call stack size exceeded\n"},{"item":"tabtab","response":"success"},{"item":"tabulator","response":"success"},{"item":"tabulator-tables","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"tail","response":"success"},{"item":"tampermonkey","response":"success"},{"item":"tapable","response":"success"},{"item":"tape","response":"success"},{"item":"tape-async","response":"success"},{"item":"tape-catch","response":"success"},{"item":"tape-promise","response":"success"},{"item":"tar","response":"success"},{"item":"tar-fs","response":"success"},{"item":"tar-stream","response":"success"},{"item":"tarantool-driver","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"targz","response":"success"},{"item":"task-graph-runner","response":"success"},{"item":"task-worklet","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"tcp-ping","response":"success"},{"item":"tcp-port-used","response":"success"},{"item":"tdweb","response":"success"},{"item":"tea-merge","response":"success"},{"item":"teddy","response":"success"},{"item":"tedious","response":"success"},{"item":"tedious-connection-pool","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.19.json\nCannot read property '0' of undefined\n"},{"item":"teechart","response":"success"},{"item":"telebot","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\nCannot read property '0' of undefined\n"},{"item":"temp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"temp-fs","response":"success"},{"item":"terminal-kit","response":"success"},{"item":"terminal-menu","response":"success"},{"item":"tern","response":"success"},{"item":"terser-webpack-plugin","response":"success"},{"item":"teslajs","response":"success"},{"item":"tesseract.js","response":"success"},{"item":"test-console","response":"success"},{"item":"test-listen","response":"success"},{"item":"testing-library__cypress","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.0.json\n\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(23,31): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(44,86): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(57,89): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(70,85): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(83,88): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(96,83): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(109,86): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(122,82): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(135,85): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(148,88): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(161,91): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(174,87): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(187,90): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(200,78): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(213,81): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(226,77): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(239,80): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(252,77): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(265,80): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(278,76): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(291,79): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(304,76): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(317,79): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(330,75): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(343,78): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(356,83): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(369,86): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(382,82): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(395,85): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(408,74): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(421,77): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(434,73): error TS2304: Cannot find name 'JQuery'.\n../DefinitelyTyped/types/testing-library__cypress/index.d.ts(447,76): error TS2304: Cannot find name 'JQuery'.\n"},{"item":"testing-library__dom","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"testing-library__jest-dom","response":"success"},{"item":"testing-library__react","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"testing-library__react-hooks","response":"success"},{"item":"testing-library__user-event","response":"success"},{"item":"testing-library__vue","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: VariableDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of SourceFile - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"testingbot-api","response":"success"},{"item":"tether","response":"success"},{"item":"tether-drop","response":"success"},{"item":"tether-shepherd","response":"success"},{"item":"text-buffer","response":"success"},{"item":"text-encoding","response":"success"},{"item":"text-encoding-utf-8","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"text-mask-addons","response":"success"},{"item":"text-mask-core","response":"success"},{"item":"text-table","response":"success"},{"item":"textarea-caret","response":"success"},{"item":"textextensions","response":"success"},{"item":"textract","response":"success"},{"item":"textversionjs","response":"success"},{"item":"texzilla","response":"success"},{"item":"tgfancy","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property '0' of undefined\n"},{"item":"theme-ui","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"theme-ui__components","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"then-eos","response":"success"},{"item":"theo","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.1.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n"},{"item":"thepiratebay","response":"success"},{"item":"three-tds-loader","response":"success"},{"item":"thrift","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"throng","response":"success"},{"item":"throttle","response":"success"},{"item":"throttle-debounce","response":"success"},{"item":"throttleit","response":"success"},{"item":"through","response":"success"},{"item":"through2","response":"success"},{"item":"through2-concurrent","response":"success"},{"item":"through2-map","response":"success"},{"item":"tictactoejs","response":"success"},{"item":"tile-reduce","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"tilebelt","response":"success"},{"item":"timeago","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"timelinejs","response":"success"},{"item":"timelinejs3","response":"success"},{"item":"timer-machine","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nCannot read property '0' of undefined\n"},{"item":"timezone-js","response":"success"},{"item":"timezoned-date","response":"success"},{"item":"timing-safe-equal","response":"success"},{"item":"timsort","response":"success"},{"item":"tinajs__tina","response":"success"},{"item":"tinajs__tina-redux","response":"success"},{"item":"tinder","response":"success"},{"item":"tingle.js","response":"success"},{"item":"tiny-async-pool","response":"success"},{"item":"tiny-secp256k1","response":"success"},{"item":"tiny-slider-react","response":"success"},{"item":"tinycolor2","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"tinycon","response":"success"},{"item":"tinycopy","response":"success"},{"item":"tinymce","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"titanium","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n../DefinitelyTyped/types/node/globals.d.ts(167,13): error TS2300: Duplicate identifier 'require'.\n../DefinitelyTyped/types/titanium/index.d.ts(1156,18): error TS2300: Duplicate identifier 'require'.\n"},{"item":"title","response":"success"},{"item":"tldjs","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.2.json\nMaximum call stack size exceeded\n"},{"item":"tlds","response":"success"},{"item":"tlf-log","response":"success"},{"item":"tmi.js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"tmp","response":"success"},{"item":"to-absolute-glob","response":"success"},{"item":"to-camel-case","response":"success"},{"item":"to-json-schema","response":"success"},{"item":"to-markdown","response":"success"},{"item":"to-slug-case","response":"success"},{"item":"to-snake-case","response":"success"},{"item":"to-space-case","response":"success"},{"item":"to-title-case","response":"success"},{"item":"to-title-case-gouch","response":"success"},{"item":"toastr","response":"success"},{"item":"tocktimer","response":"success"},{"item":"tokenizr","response":"success"},{"item":"tokgen","response":"success"},{"item":"toobusy-js","response":"success"},{"item":"tooltipster","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nMaximum call stack size exceeded\n"},{"item":"topo","response":"success"},{"item":"topojson","response":"success"},{"item":"topojson-client","response":"success"},{"item":"topojson-server","response":"success"},{"item":"topojson-simplify","response":"success"},{"item":"topojson-specification","response":"success"},{"item":"toposort","response":"success"},{"item":"torrent-search-api","response":"success"},{"item":"torrent-stream","response":"success"},{"item":"touch","response":"success"},{"item":"touch-events","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/touch-events"},{"item":"tough-cookie","response":"success"},{"item":"tough-cookie-file-store","response":"success"},{"item":"tough-cookie-filestore","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property '0' of undefined\n"},{"item":"traceback","response":"success"},{"item":"tracking","response":"success"},{"item":"transducers-js","response":"success"},{"item":"transducers.js","response":"success"},{"item":"trashable","response":"success"},{"item":"traverse","response":"success"},{"item":"traverson","response":"success"},{"item":"travis-fold","response":"success"},{"item":"trayballoon","response":"success"},{"item":"treeify","response":"success"},{"item":"tress","response":"success"},{"item":"trezor-connect","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"trianglify","response":"success"},{"item":"trie-prefix-tree","response":"success"},{"item":"trim","response":"success"},{"item":"triple-beam","response":"success"},{"item":"triplesec","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"trouter","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.4.json\nCannot read property '0' of undefined\n"},{"item":"truffle-privatekey-provider","response":"success"},{"item":"truncate-middle","response":"success"},{"item":"trunk8","response":"success"},{"item":"trusted-types","response":"success"},{"item":"tryer","response":"success"},{"item":"tryghost__content-api","response":"success"},{"item":"ts-nameof","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"tsc-watch","response":"success"},{"item":"tspromise","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.5.json\nCannot read property '0' of undefined\n"},{"item":"tsscmp","response":"success"},{"item":"ttf2woff2","response":"success"},{"item":"tti-polyfill","response":"success"},{"item":"tunnel","response":"success"},{"item":"tunnel-ssh","response":"success"},{"item":"turbolinks","response":"success"},{"item":"turbostatus","response":"success"},{"item":"turndown","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"tus-js-client","response":"success"},{"item":"tv4","response":"success"},{"item":"tween.js","response":"success"},{"item":"tweenjs","response":"success"},{"item":"tweezer.js","response":"success"},{"item":"twemoji","response":"success"},{"item":"twig","response":"success"},{"item":"twilio","response":"success"},{"item":"twilio-common","response":"success"},{"item":"twilio-video","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"twit","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"twitch-ext","response":"success"},{"item":"twitter","response":"success"},{"item":"twitter-for-web","response":"success"},{"item":"twitter-stream-channels","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n"},{"item":"twitter-text","response":"success"},{"item":"twix","response":"success"},{"item":"two.js","response":"success"},{"item":"type-check","response":"success"},{"item":"type-detect","response":"success"},{"item":"type-is","response":"success"},{"item":"type-name","response":"success"},{"item":"typeahead","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\nCannot read property '0' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"typedarray-pool","response":"success"},{"item":"typeof","response":"success"},{"item":"typescript-deferred","response":"success"},{"item":"typography","response":"success"},{"item":"typography-breakpoint-constants","response":"success"},{"item":"typpy","response":"success"},{"item":"tz-format","response":"success"},{"item":"tz-lookup","response":"success"},{"item":"tz-offset","response":"success"},{"item":"ua-parser-js","response":"success"},{"item":"uglify-es","response":"success"},{"item":"uglify-js","response":"success"},{"item":"uglifycss","response":"success"},{"item":"uglifyjs-webpack-plugin","response":"success"},{"item":"ui-grid","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property 'declarations' of undefined\n"},{"item":"ui-router-extras","response":"success"},{"item":"ui-select","response":"success"},{"item":"uid-generator","response":"success"},{"item":"uid-safe","response":"success"},{"item":"uid2","response":"success"},{"item":"uikit","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"uinput","response":"success"},{"item":"uint32","response":"success"},{"item":"ultra-strftime","response":"success"},{"item":"umbraco","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"umd","response":"success"},{"item":"umzug","response":"success"},{"item":"unc-path-regex","response":"success"},{"item":"underscore","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"underscore-ko","response":"success"},{"item":"underscore.string","response":"success"},{"item":"undertaker","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\nCannot read property '0' of undefined\n"},{"item":"undertaker-registry","response":"success"},{"item":"ungap__create-content","response":"success"},{"item":"ungap__global-this","response":"success"},{"item":"ungap__url-search-params","response":"success"},{"item":"ungap__weakmap","response":"success"},{"item":"uni-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/uni-app"},{"item":"unidecode","response":"success"},{"item":"uniq","response":"success"},{"item":"uniqid","response":"success"},{"item":"unique-hash-stream","response":"success"},{"item":"unique-push-id","response":"success"},{"item":"unist","response":"success"},{"item":"unity-webapi","response":"success"},{"item":"universal-analytics","response":"success"},{"item":"universal-cookie","response":"success"},{"item":"universalify","response":"success"},{"item":"unl-core","response":"success"},{"item":"unorm","response":"success"},{"item":"unsplash-js","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"unused-files-webpack-plugin","response":"success"},{"item":"unzip","response":"success"},{"item":"unzipper","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"update-notifier","response":"success"},{"item":"uploadcare","response":"success"},{"item":"upng-js","response":"success"},{"item":"uppercamelcase","response":"success"},{"item":"urbanairship-cordova","response":"success"},{"item":"uri-template-lite","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"uri-templates","response":"success"},{"item":"urijs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"uritemplate","response":"success"},{"item":"urix","response":"success"},{"item":"url-assembler","response":"success"},{"item":"url-join","response":"success"},{"item":"url-metadata","response":"success"},{"item":"url-params","response":"success"},{"item":"url-parse","response":"success"},{"item":"url-safe-base64","response":"success"},{"item":"url-search-params","response":"success"},{"item":"url-template","response":"success"},{"item":"urlencode","response":"success"},{"item":"urlparser","response":"success"},{"item":"urlrouter","response":"success"},{"item":"urlsafe-base64","response":"success"},{"item":"usage","response":"success"},{"item":"usb","response":"success"},{"item":"use-combined-reducers","response":"success"},{"item":"use-deep-compare-effect","response":"success"},{"item":"use-global-hook","response":"success"},{"item":"use-persisted-state","response":"success"},{"item":"use-position","response":"success"},{"item":"use-resize-observer","response":"success"},{"item":"use-set-interval","response":"success"},{"item":"use-set-timeout","response":"success"},{"item":"use-subscription","response":"success"},{"item":"user-agents","response":"success"},{"item":"user-event","response":"success"},{"item":"user-home","response":"success"},{"item":"useragent","response":"success"},{"item":"username","response":"success"},{"item":"uslug","response":"success"},{"item":"utf8","response":"success"},{"item":"utif","response":"success"},{"item":"util-deprecate","response":"success"},{"item":"util.promisify","response":"success"},{"item":"utils-merge","response":"success"},{"item":"utm","response":"success"},{"item":"uuid","response":"success"},{"item":"uuid-1345","response":"success"},{"item":"uuid-apikey","response":"success"},{"item":"uuid-js","response":"success"},{"item":"uuid-parse","response":"success"},{"item":"uuid-validate","response":"success"},{"item":"uws","response":"success"},{"item":"v-chart-plugin","response":"success"},{"item":"v8-profiler","response":"success"},{"item":"v8flags","response":"success"},{"item":"valdr","response":"success"},{"item":"valdr-message","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"valerie","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vali-date","response":"success"},{"item":"valiant","response":"success"},{"item":"valid-data-url","response":"success"},{"item":"valid-url","response":"success"},{"item":"validate-npm-package-name","response":"success"},{"item":"validator","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"validatorjs","response":"success"},{"item":"vanilla-masker","response":"success"},{"item":"vanilla-modal","response":"success"},{"item":"vara","response":"success"},{"item":"varint","response":"success"},{"item":"vary","response":"success"},{"item":"vast-client","response":"success"},{"item":"vault-auth-aws","response":"success"},{"item":"vcards-js","response":"success"},{"item":"vcf","response":"success"},{"item":"vec2","response":"success"},{"item":"vec3","response":"success"},{"item":"vectorious","response":"success"},{"item":"venn","response":"success"},{"item":"verror","response":"success"},{"item":"vertx3-eventbus-client","response":"success"},{"item":"vex-js","response":"success"},{"item":"vexflow","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vfile-location","response":"success"},{"item":"vhost","response":"success"},{"item":"victor","response":"success"},{"item":"victory","response":"success"},{"item":"video.js","response":"success"},{"item":"viewability-helper","response":"success"},{"item":"viewport-list","response":"success"},{"item":"viewport-mercator-project","response":"success"},{"item":"viewporter","response":"success"},{"item":"vigour-ua","response":"success"},{"item":"vimeo","response":"success"},{"item":"vimeo__player","response":"success"},{"item":"vinyl","response":"success"},{"item":"vinyl-buffer","response":"success"},{"item":"vinyl-fs","response":"success"},{"item":"vinyl-paths","response":"success"},{"item":"vinyl-source-stream","response":"success"},{"item":"virtual-dom","response":"success"},{"item":"virtual-keyboard","response":"success"},{"item":"vis","response":"success"},{"item":"vision","response":"success"},{"item":"vitalsigns","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.12.json\nCannot read property '0' of undefined\n"},{"item":"vivus","response":"success"},{"item":"vkbeautify","response":"success"},{"item":"vmap","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property '0' of undefined\n"},{"item":"vndb","response":"success"},{"item":"vnu-jar","response":"success"},{"item":"voca","response":"success"},{"item":"void-elements","response":"success"},{"item":"voronoi-diagram","response":"success"},{"item":"vorpal","response":"success"},{"item":"vortex-web-client","response":"success"},{"item":"voucher-code-generator","response":"success"},{"item":"voximplant-websdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vscode","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vscode-windows-registry","response":"success"},{"item":"vssln-parser","response":"success"},{"item":"vue-chartkick","response":"success"},{"item":"vue-clickaway","response":"success"},{"item":"vue-color","response":"success"},{"item":"vue-datetime","response":"success"},{"item":"vue-feather-icons","response":"success"},{"item":"vue-ls","response":"success"},{"item":"vue-markdown","response":"success"},{"item":"vue-moment","response":"success"},{"item":"vue-select","response":"success"},{"item":"vue-splitpane","response":"success"},{"item":"vue-tel-input","response":"success"},{"item":"vue-the-mask","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"vue2-datepicker","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"vue2-editor","response":"success"},{"item":"vue2-hammer","response":"success"},{"item":"vuedraggable","response":"success"},{"item":"vuelidate","response":"success"},{"item":"w2ui","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"w3c-gamepad","response":"success"},{"item":"w3c-generic-sensor","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'statements' of undefined\n"},{"item":"w3c-image-capture","response":"success"},{"item":"w3c-screen-orientation","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property 'statements' of undefined\n"},{"item":"w3c-web-usb","response":"success"},{"item":"w3c-xmlserializer","response":"success"},{"item":"wait-on","response":"success"},{"item":"wait-promise","response":"success"},{"item":"waitme","response":"success"},{"item":"wake_on_lan","response":"success"},{"item":"walk","response":"success"},{"item":"wallabyjs","response":"success"},{"item":"wallop","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nCannot read property '0' of undefined\n"},{"item":"wampy","response":"success"},{"item":"wanakana","response":"success"},{"item":"warning","response":"success"},{"item":"watch","response":"success"},{"item":"watchify","response":"success"},{"item":"watchpack","response":"success"},{"item":"waterline","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"wav","response":"success"},{"item":"wav-encoder","response":"success"},{"item":"wavesurfer.js","response":"success"},{"item":"waypoints","response":"success"},{"item":"wcag-contrast","response":"success"},{"item":"wcwidth","response":"success"},{"item":"weak","response":"success"},{"item":"weak-napi","response":"success"},{"item":"weapp-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"web-animations-js","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.15.json\nCannot read property 'statements' of undefined\n"},{"item":"web-bluetooth","response":"success"},{"item":"web-locks-api","response":"success"},{"item":"web-push","response":"success"},{"item":"web-resource-inliner","response":"success"},{"item":"web3-provider-engine","response":"success"},{"item":"webappsec-credential-management","response":"success"},{"item":"webassembly-web-api","response":"success"},{"item":"webcl","response":"success"},{"item":"webcomponents.js","response":"success"},{"item":"webcrypto","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/webcrypto"},{"item":"webfontloader","response":"success"},{"item":"webgl-ext","response":"success"},{"item":"webgl2","response":"success"},{"item":"webicon","response":"success"},{"item":"webidl-conversions","response":"success"},{"item":"webidl2","response":"success"},{"item":"webidl2js","response":"success"},{"item":"webmidi","response":"success"},{"item":"webpack","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nMaximum call stack size exceeded\n"},{"item":"webpack-assets-manifest","response":"success"},{"item":"webpack-blocks","response":"success"},{"item":"webpack-blocks__assets","response":"success"},{"item":"webpack-blocks__babel","response":"success"},{"item":"webpack-blocks__core","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"webpack-blocks__dev-server","response":"success"},{"item":"webpack-blocks__extract-text","response":"success"},{"item":"webpack-blocks__postcss","response":"success"},{"item":"webpack-blocks__sass","response":"success"},{"item":"webpack-blocks__typescript","response":"success"},{"item":"webpack-blocks__uglify","response":"success"},{"item":"webpack-blocks__webpack","response":"success"},{"item":"webpack-bugsnag-plugins","response":"success"},{"item":"webpack-bundle-analyzer","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"webpack-chunk-hash","response":"success"},{"item":"webpack-cleanup-plugin","response":"success"},{"item":"webpack-concat-plugin","response":"success"},{"item":"webpack-config-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null"},{"item":"webpack-dev-middleware","response":"success"},{"item":"webpack-dev-server","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"webpack-dotenv-plugin","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"webpack-env","response":"success"},{"item":"webpack-error-notification","response":"success"},{"item":"webpack-fail-plugin","response":"success"},{"item":"webpack-hot-client","response":"success"},{"item":"webpack-hot-middleware","response":"success"},{"item":"webpack-manifest-plugin","response":"success"},{"item":"webpack-merge","response":"success"},{"item":"webpack-node-externals","response":"success"},{"item":"webpack-notifier","response":"success"},{"item":"webpack-plugin-serve","response":"success"},{"item":"webpack-serve","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"webpack-sources","response":"success"},{"item":"webpack-stream","response":"success"},{"item":"webpack-subresource-integrity","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"webpack-validator","response":"success"},{"item":"webpack-virtual-modules","response":"success"},{"item":"webpack-watched-glob-entries-plugin","response":"success"},{"item":"webpackbar","response":"success"},{"item":"webpagetest","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.17.json\nCannot read property '0' of undefined\n"},{"item":"webprogbase-console-view","response":"success"},{"item":"webrtc","response":"warning","message":"\u001b[33mWARNING\u001b[39m: DefinitelyTypedTransformer - Cannot find any valid type for this module ../DefinitelyTyped/types/webrtc"},{"item":"webscopeio__react-textarea-autocomplete","response":"success"},{"item":"websequencediagrams","response":"success"},{"item":"website-scraper","response":"success"},{"item":"websocket","response":"success"},{"item":"websocket-async","response":"success"},{"item":"websql","response":"success"},{"item":"webtorrent","response":"success"},{"item":"webvr-api","response":"success"},{"item":"week","response":"success"},{"item":"wegame-api","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"weighted","response":"success"},{"item":"weighted-random-object","response":"success"},{"item":"weixin-app","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wellknown","response":"success"},{"item":"wepy","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of PropertySignature - it will convert to null"},{"item":"wepy-redux","response":"success"},{"item":"whatwg-encoding","response":"success"},{"item":"whatwg-mimetype","response":"success"},{"item":"whatwg-url","response":"success"},{"item":"wheel","response":"success"},{"item":"when","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"when-dom-ready","response":"success"},{"item":"which","response":"success"},{"item":"which-pm-runs","response":"success"},{"item":"whitelist-object","response":"success"},{"item":"why-did-you-update","response":"success"},{"item":"wicg-mediasession","response":"success"},{"item":"wif","response":"success"},{"item":"wiiu","response":"success"},{"item":"wildstring","response":"success"},{"item":"window-or-global","response":"success"},{"item":"window-size","response":"success"},{"item":"windows-1251","response":"success"},{"item":"windows-foreground-love","response":"success"},{"item":"windows-mutex","response":"success"},{"item":"windows-process-tree","response":"success"},{"item":"windows-script-host","response":"success"},{"item":"windows-service","response":"success"},{"item":"winjs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"wink-pos-tagger","response":"success"},{"item":"wink-tokenizer","response":"success"},{"item":"winreg","response":"success"},{"item":"winrt","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"winrt-uwp","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"winston-dynamodb","response":"success"},{"item":"winston-loggly-bulk","response":"success"},{"item":"winston-mail","response":"success"},{"item":"winston-syslog","response":"success"},{"item":"wiredep","response":"success"},{"item":"wiring-pi","response":"success"},{"item":"wix-style-react","response":"success"},{"item":"wnumb","response":"success"},{"item":"wonder.js","response":"success"},{"item":"winston-loggly-bulk","response":"success"},{"item":"winston-mail","response":"success"},{"item":"winston-syslog","response":"success"},{"item":"wiredep","response":"success"},{"item":"wiring-pi","response":"success"},{"item":"wix-style-react","response":"success"},{"item":"wnumb","response":"success"},{"item":"wonder.js","response":"success"},{"item":"word-extractor","response":"success"},{"item":"word2vector","response":"success"},{"item":"wordcloud","response":"success"},{"item":"wordpress-hash-node","response":"success"},{"item":"wordpress__a11y","response":"success"},{"item":"wordpress__api-fetch","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"wordpress__autop","response":"success"},{"item":"wordpress__blob","response":"success"},{"item":"wordpress__block-editor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"wordpress__block-library","response":"success"},{"item":"wordpress__block-serialization-default-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"wordpress__block-serialization-spec-parser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"wordpress__blocks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"wordpress__components","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wordpress__compose","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wordpress__core-data","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wordpress__custom-templated-path-webpack-plugin","response":"success"},{"item":"wordpress__data","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null"},{"item":"wordpress__data-controls","response":"success"},{"item":"wordpress__date","response":"success"},{"item":"wordpress__dependency-extraction-webpack-plugin","response":"success"},{"item":"wordpress__deprecated","response":"success"},{"item":"wordpress__dom","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.3.json\nCannot read property 'declarations' of undefined\n"},{"item":"wordpress__dom-ready","response":"success"},{"item":"wordpress__edit-post","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"wordpress__editor","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: LastTypeNode - it will convert to null"},{"item":"wordpress__element","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: IndexedAccess of TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: SymbolKeyword - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wordpress__escape-html","response":"success"},{"item":"wordpress__hooks","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wordpress__html-entities","response":"success"},{"item":"wordpress__i18n","response":"success"},{"item":"wordpress__is-shallow-equal","response":"success"},{"item":"wordpress__jest-console","response":"success"},{"item":"wordpress__keycodes","response":"success"},{"item":"wordpress__library-export-default-webpack-plugin","response":"success"},{"item":"wordpress__media-utils","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wordpress__notices","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"wordpress__nux","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"wordpress__plugins","response":"success"},{"item":"wordpress__priority-queue","response":"success"},{"item":"wordpress__redux-routine","response":"success"},{"item":"wordpress__rich-text","response":"success"},{"item":"wordpress__shortcode","response":"success"},{"item":"wordpress__token-list","response":"success"},{"item":"wordpress__url","response":"success"},{"item":"wordpress__viewport","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"wordpress__wordcount","response":"success"},{"item":"words-to-numbers","response":"success"},{"item":"wordwrap","response":"success"},{"item":"workbox-background-sync","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(39,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(51,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(62,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-broadcast-update","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(39,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(51,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(62,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-build","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\n../DefinitelyTyped/types/workbox-routing/Router.d.ts(31,17): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteHandler.d.ts(11,13): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteMatchCallback.d.ts(5,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-cacheable-response","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(39,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(51,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(62,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-core","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(39,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(51,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(62,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-expiration","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.6.json\n\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(39,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(51,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(62,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-google-analytics","response":"success"},{"item":"workbox-navigation-preload","response":"success"},{"item":"workbox-precaching","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(39,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(51,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(62,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-precaching/PrecacheController.d.ts(19,17): error TS2304: Cannot find name 'FetchEvent'.\n"},{"item":"workbox-range-requests","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(39,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(51,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(62,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-routing","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/workbox-routing/Router.d.ts(31,17): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteHandler.d.ts(11,13): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteMatchCallback.d.ts(5,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-strategies","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(39,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(51,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(62,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-routing/Router.d.ts(31,17): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteHandler.d.ts(11,13): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteMatchCallback.d.ts(5,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-strategies/types/MakeRequestCallback.d.ts(7,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-streams","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/workbox-routing/Router.d.ts(31,17): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteHandler.d.ts(11,13): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteMatchCallback.d.ts(5,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-sw","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.7.json\n\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(39,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(51,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-core/types/WorkboxPlugin.d.ts(62,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-precaching/PrecacheController.d.ts(19,17): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/Router.d.ts(31,17): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteHandler.d.ts(11,13): error TS2304: Cannot find name 'FetchEvent'.\n../DefinitelyTyped/types/workbox-routing/types/RouteMatchCallback.d.ts(5,13): error TS2304: Cannot find name 'ExtendableEvent'.\n../DefinitelyTyped/types/workbox-strategies/types/MakeRequestCallback.d.ts(7,13): error TS2304: Cannot find name 'ExtendableEvent'.\n"},{"item":"workbox-webpack-plugin","response":"success"},{"item":"workbox-window","response":"success"},{"item":"worker-plugin","response":"success"},{"item":"worker-threads-pool","response":"success"},{"item":"workerpool","response":"success"},{"item":"wpapi","response":"success"},{"item":"wrap-ansi","response":"success"},{"item":"wreck","response":"success"},{"item":"wrench","response":"success"},{"item":"writable-consumable-stream","response":"success"},{"item":"write","response":"success"},{"item":"write-file-atomic","response":"success"},{"item":"write-file-atomically","response":"success"},{"item":"ws","response":"success"},{"item":"wtfnode","response":"success"},{"item":"wu","response":"success"},{"item":"wx-js-sdk-dt","response":"success"},{"item":"wx-server-sdk","response":"success"},{"item":"wyt","response":"success"},{"item":"x-editable","response":"success"},{"item":"x-ray","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.10.json\nCannot read property 'declarations' of undefined\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n"},{"item":"x-ray-crawler","response":"success"},{"item":"x509.js","response":"success"},{"item":"xdate","response":"success"},{"item":"xdomain","response":"success"},{"item":"xml","response":"success"},{"item":"xml-c14n","response":"success"},{"item":"xml-crypto","response":"success"},{"item":"xml-escape","response":"success"},{"item":"xml-formatter","response":"success"},{"item":"xml-parser","response":"success"},{"item":"xml2js","response":"success"},{"item":"xml2json","response":"success"},{"item":"xmldoc","response":"success"},{"item":"xmldom","response":"success"},{"item":"xmljs","response":"success"},{"item":"xmlpoke","response":"success"},{"item":"xmlrpc","response":"success"},{"item":"xmlserializer","response":"success"},{"item":"xmltojson","response":"success"},{"item":"xmpp__jid","response":"success"},{"item":"xmpp__xml","response":"success"},{"item":"xo","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of MethodDeclaration - it will convert to null"},{"item":"xregexp","response":"success"},{"item":"xrm","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"xsd-schema-validator","response":"success"},{"item":"xsockets","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"xss-filters","response":"success"},{"item":"xstyled__system","response":"success"},{"item":"xtend","response":"success"},{"item":"xumm-api","response":"success"},{"item":"xxhashjs","response":"success"},{"item":"y18n","response":"success"},{"item":"yadda","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.13.json\nCannot read property 'declarations' of undefined\n"},{"item":"yallist","response":"success"},{"item":"yaml","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"yaml-front-matter","response":"success"},{"item":"yamljs","response":"success"},{"item":"yandex-maps","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.14.json\nMaximum call stack size exceeded\n\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n"},{"item":"yandex-money-sdk","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"yar","response":"success"},{"item":"yargs","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"yargs-interactive","response":"success"},{"item":"yargs-parser","response":"success"},{"item":"yarnpkg__lockfile","response":"success"},{"item":"yauzl","response":"success"},{"item":"yauzl-promise","response":"success"},{"item":"yawn-yaml","response":"success"},{"item":"yayson","response":"success"},{"item":"yazl","response":"success"},{"item":"ydn-db","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"yeast","response":"success"},{"item":"yeoman-assert","response":"success"},{"item":"yeoman-environment","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"yeoman-generator","response":"error","message":"Error: Command failed: npx ttsc --project tsconfig.types.16.json\nCannot read property '0' of undefined\n"},{"item":"yeoman-test","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ModuleDeclaration - it will convert to null"},{"item":"yesql","response":"success"},{"item":"yoctodelay","response":"success"},{"item":"yog-bigpipe","response":"success"},{"item":"yog-log","response":"success"},{"item":"yog-ral","response":"success"},{"item":"yog2-kernel","response":"success"},{"item":"yoga-layout","response":"success"},{"item":"yosay","response":"success"},{"item":"youtube","response":"success"},{"item":"youtube-dl","response":"success"},{"item":"youtube-player","response":"success"},{"item":"yt-player","response":"success"},{"item":"yt-search","response":"success"},{"item":"yui","response":"success"},{"item":"yup","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: ConditionalType - it will convert to null"},{"item":"zchat-browser","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"zdog","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"zeit__next-source-maps","response":"success"},{"item":"zeit__next-typescript","response":"success"},{"item":"zen-observable","response":"success"},{"item":"zen-push","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: NamespaceImport - it will convert to null"},{"item":"zenaton","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeQuery of ModuleDeclaration - it will convert to null"},{"item":"zenscroll","response":"success"},{"item":"zepto","response":"success"},{"item":"zeroclipboard","response":"success"},{"item":"zeromq","response":"success"},{"item":"zfont","response":"warning","message":"\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null\n\u001b[33mWARNING\u001b[39m: Transformer - Not supported type: TypeOperator - it will convert to null"},{"item":"zingchart","response":"success"},{"item":"zip-webpack-plugin","response":"success"},{"item":"zip.js","response":"success"},{"item":"zipcelx","response":"success"},{"item":"zipcodes","response":"success"},{"item":"zipkin-context-cls","response":"success"}] \ No newline at end of file diff --git a/data/definitelyTyped/list.json b/data/definitelyTyped/list.json index d0d7497e9..d972d09ac 100644 --- a/data/definitelyTyped/list.json +++ b/data/definitelyTyped/list.json @@ -1 +1 @@ -[{"id":"756c5f8d-be26-43fc-8831-0a12df4c972e.json","initialDate":"2020-01-11T17:17:58.333Z","lastUpdatedDate":"2020-01-16T00:31:39.270Z","typesProcessed":9999},{"id":"9749238a-cba9-4abd-9fac-f9d0d4ef90e3.json","initialDate":"2020-01-17T20:34:24.904Z","lastUpdatedDate":"2020-02-01T00:40:31.064Z","typesProcessed":9999},{"id":"45e2213b-fa9c-40d1-b066-89413f063ee3.json","initialDate":"2020-02-01T17:11:06.944Z","lastUpdatedDate":"2020-03-07T00:20:59.201Z","typesProcessed":6549},{"id":"532444dd-7414-42ad-8d30-3da2d2e6c9af.json","initialDate":"2020-03-08T08:08:21.638Z","lastUpdatedDate":"2020-03-17T00:55:23.522Z","typesProcessed":9999},{"id":"59fcd50b-ad93-43d9-8777-45cf4cb83abe.json","initialDate":"2020-03-29T00:47:04.041Z","lastUpdatedDate":"2020-04-13T00:47:26.405Z","typesProcessed":6500}] \ No newline at end of file +[{"id":"756c5f8d-be26-43fc-8831-0a12df4c972e.json","initialDate":"2020-01-11T17:17:58.333Z","lastUpdatedDate":"2020-01-16T00:31:39.270Z","typesProcessed":9999},{"id":"9749238a-cba9-4abd-9fac-f9d0d4ef90e3.json","initialDate":"2020-01-17T20:34:24.904Z","lastUpdatedDate":"2020-02-01T00:40:31.064Z","typesProcessed":9999},{"id":"45e2213b-fa9c-40d1-b066-89413f063ee3.json","initialDate":"2020-02-01T17:11:06.944Z","lastUpdatedDate":"2020-03-07T00:20:59.201Z","typesProcessed":6549},{"id":"532444dd-7414-42ad-8d30-3da2d2e6c9af.json","initialDate":"2020-03-08T08:08:21.638Z","lastUpdatedDate":"2020-03-17T00:55:23.522Z","typesProcessed":9999},{"id":"59fcd50b-ad93-43d9-8777-45cf4cb83abe.json","initialDate":"2020-03-29T00:47:04.041Z","lastUpdatedDate":"2020-04-14T00:29:04.679Z","typesProcessed":6680}] \ No newline at end of file From 9965667425b5532cf286c7d0d6b3b06573d0d237 Mon Sep 17 00:00:00 2001 From: typescripttdd <59508597+typescripttdd@users.noreply.github.com> Date: Sat, 25 Apr 2020 08:46:36 +0100 Subject: [PATCH 42/43] Add Performance data (#306) Co-authored-by: Vittorio Guerriero --- data/performance.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/performance.json b/data/performance.json index 492152307..4e45bc6f7 100644 --- a/data/performance.json +++ b/data/performance.json @@ -1 +1 @@ -{"master":{"619cbd70cd27b36544bef0baf30de817f975b017":{"2020-01-05T14:48:17.400Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"401883K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.82"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.72"},"emit_time":{"title":"Emit time","value":"3.51"},"total_time":{"title":"Total time","value":"11.01"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"297348K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.84"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.83"},"emit_time":{"title":"Emit time","value":"7.82"},"total_time":{"title":"Total time","value":"15.44"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"488183K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.15"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"5.21"},"emit_time":{"title":"Emit time","value":"14.81"},"total_time":{"title":"Total time","value":"23.09"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"395290K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"2.19"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"4.96"},"emit_time":{"title":"Emit time","value":"11.47"},"total_time":{"title":"Total time","value":"19.56"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"454459K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.55"},"parse_time":{"title":"Parse time","value":"2.09"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"5.03"},"emit_time":{"title":"Emit time","value":"13.53"},"total_time":{"title":"Total time","value":"21.57"}}}]},"9f32c58bdb0a4df353e7b3b128cff0441186ad5b":{"2020-01-13T04:55:19.598Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"403531K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.91"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.75"},"emit_time":{"title":"Emit time","value":"3.50"},"total_time":{"title":"Total time","value":"11.08"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"293146K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"4.81"},"emit_time":{"title":"Emit time","value":"7.88"},"total_time":{"title":"Total time","value":"15.46"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"479336K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.53"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.96"},"check_time":{"title":"Check time","value":"5.25"},"emit_time":{"title":"Emit time","value":"14.85"},"total_time":{"title":"Total time","value":"23.13"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"379998K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"2.06"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.78"},"emit_time":{"title":"Emit time","value":"11.53"},"total_time":{"title":"Total time","value":"19.27"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"456552K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.56"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"5.07"},"emit_time":{"title":"Emit time","value":"13.65"},"total_time":{"title":"Total time","value":"21.70"}}}]},"00d9904b19b5a3f4fadbe22068cb4cde365f904a":{"2020-01-13T05:09:35.499Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"403867K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.39"},"parse_time":{"title":"Parse time","value":"1.64"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.04"},"emit_time":{"title":"Emit time","value":"3.05"},"total_time":{"title":"Total time","value":"9.56"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"298958K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.08"},"emit_time":{"title":"Emit time","value":"6.56"},"total_time":{"title":"Total time","value":"13.03"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"481671K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"12.37"},"total_time":{"title":"Total time","value":"19.37"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"392206K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.80"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"9.83"},"total_time":{"title":"Total time","value":"16.75"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"450953K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"4.31"},"emit_time":{"title":"Emit time","value":"11.48"},"total_time":{"title":"Total time","value":"18.38"}}}]},"0253e95436a2658f39841d108d6e7db464b49895":{"2020-01-14T14:34:18.560Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"400032K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.71"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.42"},"emit_time":{"title":"Emit time","value":"3.24"},"total_time":{"title":"Total time","value":"10.26"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"305919K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.68"},"bind_time":{"title":"Bind time","value":"0.83"},"check_time":{"title":"Check time","value":"4.37"},"emit_time":{"title":"Emit time","value":"7.30"},"total_time":{"title":"Total time","value":"14.19"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"435880K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.02"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"4.89"},"emit_time":{"title":"Emit time","value":"13.23"},"total_time":{"title":"Total time","value":"21.04"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"393002K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.57"},"parse_time":{"title":"Parse time","value":"2.06"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.57"},"emit_time":{"title":"Emit time","value":"11.31"},"total_time":{"title":"Total time","value":"18.73"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"419846K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"2.01"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.65"},"emit_time":{"title":"Emit time","value":"12.23"},"total_time":{"title":"Total time","value":"19.74"}}}]},"6235f37c3b49c4f94bb77fdda7c99546af0284d5":{"2020-01-14T20:10:18.151Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"399135K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.81"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"4.57"},"emit_time":{"title":"Emit time","value":"3.49"},"total_time":{"title":"Total time","value":"10.78"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"302616K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.49"},"emit_time":{"title":"Emit time","value":"7.45"},"total_time":{"title":"Total time","value":"14.65"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"453696K"},"i/o_read":{"title":"I/O read","value":"0.80"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"2.58"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"5.08"},"emit_time":{"title":"Emit time","value":"13.39"},"total_time":{"title":"Total time","value":"21.96"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"395581K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.52"},"parse_time":{"title":"Parse time","value":"1.99"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.68"},"emit_time":{"title":"Emit time","value":"11.12"},"total_time":{"title":"Total time","value":"18.64"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"428262K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.55"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.91"},"emit_time":{"title":"Emit time","value":"12.47"},"total_time":{"title":"Total time","value":"20.34"}}}]},"ad76471504f18882604cf83c76904119870c2954":{"2020-01-16T08:01:05.488Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5087"},"lines":{"title":"Lines","value":"111494"},"nodes":{"title":"Nodes","value":"407644"},"identifiers":{"title":"Identifiers","value":"127326"},"symbols":{"title":"Symbols","value":"102438"},"types":{"title":"Types","value":"37186"},"memory_used":{"title":"Memory used","value":"399261K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.96"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.83"},"emit_time":{"title":"Emit time","value":"3.61"},"total_time":{"title":"Total time","value":"11.35"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5087"},"lines":{"title":"Lines","value":"111494"},"nodes":{"title":"Nodes","value":"407644"},"identifiers":{"title":"Identifiers","value":"127326"},"symbols":{"title":"Symbols","value":"102438"},"types":{"title":"Types","value":"37186"},"memory_used":{"title":"Memory used","value":"308309K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.88"},"bind_time":{"title":"Bind time","value":"0.97"},"check_time":{"title":"Check time","value":"4.85"},"emit_time":{"title":"Emit time","value":"7.91"},"total_time":{"title":"Total time","value":"15.61"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"111510"},"nodes":{"title":"Nodes","value":"437800"},"identifiers":{"title":"Identifiers","value":"137374"},"symbols":{"title":"Symbols","value":"102473"},"types":{"title":"Types","value":"32214"},"memory_used":{"title":"Memory used","value":"452988K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.20"},"bind_time":{"title":"Bind time","value":"0.97"},"check_time":{"title":"Check time","value":"5.35"},"emit_time":{"title":"Emit time","value":"13.87"},"total_time":{"title":"Total time","value":"22.39"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"96510"},"nodes":{"title":"Nodes","value":"442800"},"identifiers":{"title":"Identifiers","value":"132374"},"symbols":{"title":"Symbols","value":"92474"},"types":{"title":"Types","value":"27214"},"memory_used":{"title":"Memory used","value":"377474K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.56"},"parse_time":{"title":"Parse time","value":"2.21"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"5.13"},"emit_time":{"title":"Emit time","value":"12.21"},"total_time":{"title":"Total time","value":"20.49"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"104010"},"nodes":{"title":"Nodes","value":"440300"},"identifiers":{"title":"Identifiers","value":"134874"},"symbols":{"title":"Symbols","value":"97474"},"types":{"title":"Types","value":"29714"},"memory_used":{"title":"Memory used","value":"429832K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.60"},"parse_time":{"title":"Parse time","value":"2.15"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"5.17"},"emit_time":{"title":"Emit time","value":"13.34"},"total_time":{"title":"Total time","value":"21.60"}}}]},"385665f2e325c26d39fa961d3222f244d19e036d":{"2020-01-18T08:35:50.971Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"228162K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.69"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"3.43"},"total_time":{"title":"Total time","value":"10.33"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"296383K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.71"},"bind_time":{"title":"Bind time","value":"0.87"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"7.05"},"total_time":{"title":"Total time","value":"13.98"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"455376K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.53"},"parse_time":{"title":"Parse time","value":"1.89"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.65"},"emit_time":{"title":"Emit time","value":"12.47"},"total_time":{"title":"Total time","value":"19.87"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"380922K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.91"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.51"},"emit_time":{"title":"Emit time","value":"10.35"},"total_time":{"title":"Total time","value":"17.61"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"432654K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.97"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.60"},"emit_time":{"title":"Emit time","value":"11.86"},"total_time":{"title":"Total time","value":"19.27"}}}]},"2d1c34ab401dbb38aca59a8ad584468a81979b73":{"2020-01-29T12:11:34.200Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"390619K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.36"},"parse_time":{"title":"Parse time","value":"2.13"},"bind_time":{"title":"Bind time","value":"0.70"},"check_time":{"title":"Check time","value":"3.76"},"emit_time":{"title":"Emit time","value":"2.94"},"total_time":{"title":"Total time","value":"9.54"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"310463K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"3.85"},"emit_time":{"title":"Emit time","value":"6.43"},"total_time":{"title":"Total time","value":"12.74"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"446160K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.82"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.09"},"emit_time":{"title":"Emit time","value":"11.37"},"total_time":{"title":"Total time","value":"18.12"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"364299K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.77"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"3.77"},"emit_time":{"title":"Emit time","value":"9.65"},"total_time":{"title":"Total time","value":"15.99"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"421232K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.77"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.07"},"emit_time":{"title":"Emit time","value":"10.93"},"total_time":{"title":"Total time","value":"17.58"}}}]},"0b376999d2028ded4494d243781f731141bb5f8c":{"2020-01-30T20:55:27.841Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"404296K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.49"},"bind_time":{"title":"Bind time","value":"0.78"},"check_time":{"title":"Check time","value":"3.50"},"emit_time":{"title":"Emit time","value":"2.89"},"total_time":{"title":"Total time","value":"8.66"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"292203K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.49"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"3.59"},"emit_time":{"title":"Emit time","value":"6.14"},"total_time":{"title":"Total time","value":"12.01"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"450465K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.66"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"3.78"},"emit_time":{"title":"Emit time","value":"10.97"},"total_time":{"title":"Total time","value":"17.21"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"363721K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"3.58"},"emit_time":{"title":"Emit time","value":"9.37"},"total_time":{"title":"Total time","value":"15.35"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"411516K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.70"},"bind_time":{"title":"Bind time","value":"0.78"},"check_time":{"title":"Check time","value":"3.77"},"emit_time":{"title":"Emit time","value":"10.41"},"total_time":{"title":"Total time","value":"16.67"}}}]},"4301c186734ec0aca663bd6036f2e3f85ea9012d":{"2020-01-31T18:53:43.631Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"406001K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.19"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"9.81"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"297999K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"6.90"},"total_time":{"title":"Total time","value":"13.73"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"448021K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.53"},"emit_time":{"title":"Emit time","value":"12.22"},"total_time":{"title":"Total time","value":"19.53"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"375400K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"4.36"},"emit_time":{"title":"Emit time","value":"10.50"},"total_time":{"title":"Total time","value":"17.48"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"436122K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.49"},"emit_time":{"title":"Emit time","value":"11.61"},"total_time":{"title":"Total time","value":"18.76"}}}]},"27ae136b8aa12caa15557ba38cb95cec05ea8c59":{"2020-02-02T12:31:03.561Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"391088K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.33"},"parse_time":{"title":"Parse time","value":"1.44"},"bind_time":{"title":"Bind time","value":"0.66"},"check_time":{"title":"Check time","value":"3.42"},"emit_time":{"title":"Emit time","value":"2.69"},"total_time":{"title":"Total time","value":"8.21"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"296355K"},"i/o_read":{"title":"I/O read","value":"0.19"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.42"},"bind_time":{"title":"Bind time","value":"0.66"},"check_time":{"title":"Check time","value":"3.51"},"emit_time":{"title":"Emit time","value":"5.93"},"total_time":{"title":"Total time","value":"11.53"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"458632K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.77"},"check_time":{"title":"Check time","value":"3.61"},"emit_time":{"title":"Emit time","value":"10.85"},"total_time":{"title":"Total time","value":"16.83"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"369084K"},"i/o_read":{"title":"I/O read","value":"0.17"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.56"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.53"},"emit_time":{"title":"Emit time","value":"9.06"},"total_time":{"title":"Total time","value":"14.90"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"404199K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.63"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.71"},"emit_time":{"title":"Emit time","value":"9.97"},"total_time":{"title":"Total time","value":"16.06"}}}]},"8d7ec18d368e07458c5ead29be61e855fd359767":{"2020-02-02T12:46:32.646Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"411123K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.83"},"check_time":{"title":"Check time","value":"4.08"},"emit_time":{"title":"Emit time","value":"3.06"},"total_time":{"title":"Total time","value":"9.58"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"306243K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.54"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.12"},"emit_time":{"title":"Emit time","value":"6.86"},"total_time":{"title":"Total time","value":"13.36"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"459621K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"11.69"},"total_time":{"title":"Total time","value":"18.75"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"368503K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.74"},"check_time":{"title":"Check time","value":"4.18"},"emit_time":{"title":"Emit time","value":"10.08"},"total_time":{"title":"Total time","value":"16.83"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"413154K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.40"},"emit_time":{"title":"Emit time","value":"11.47"},"total_time":{"title":"Total time","value":"18.51"}}}]},"37b4b7e901df103158c45ce01152587f4b81febf":{"2020-02-05T17:47:58.889Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"411964K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.64"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"3.89"},"emit_time":{"title":"Emit time","value":"3.10"},"total_time":{"title":"Total time","value":"9.39"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"302205K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"3.82"},"emit_time":{"title":"Emit time","value":"6.62"},"total_time":{"title":"Total time","value":"12.90"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"448624K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.24"},"emit_time":{"title":"Emit time","value":"12.02"},"total_time":{"title":"Total time","value":"18.91"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"382471K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"3.89"},"emit_time":{"title":"Emit time","value":"10.45"},"total_time":{"title":"Total time","value":"17.00"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"386448K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.52"},"parse_time":{"title":"Parse time","value":"1.89"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"4.15"},"emit_time":{"title":"Emit time","value":"11.40"},"total_time":{"title":"Total time","value":"18.32"}}}]},"3006c84bee945dc86f1faae9cbd2e960377c6be3":{"2020-02-08T20:55:16.243Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"392240K"},"i/o_read":{"title":"I/O read","value":"0.15"},"i/o_write":{"title":"I/O write","value":"0.34"},"parse_time":{"title":"Parse time","value":"1.20"},"bind_time":{"title":"Bind time","value":"0.55"},"check_time":{"title":"Check time","value":"2.95"},"emit_time":{"title":"Emit time","value":"2.38"},"total_time":{"title":"Total time","value":"7.08"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"335503K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.35"},"parse_time":{"title":"Parse time","value":"1.23"},"bind_time":{"title":"Bind time","value":"0.55"},"check_time":{"title":"Check time","value":"3.08"},"emit_time":{"title":"Emit time","value":"5.29"},"total_time":{"title":"Total time","value":"10.15"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"439512K"},"i/o_read":{"title":"I/O read","value":"0.15"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.40"},"bind_time":{"title":"Bind time","value":"0.65"},"check_time":{"title":"Check time","value":"3.17"},"emit_time":{"title":"Emit time","value":"9.14"},"total_time":{"title":"Total time","value":"14.36"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"365703K"},"i/o_read":{"title":"I/O read","value":"0.16"},"i/o_write":{"title":"I/O write","value":"0.35"},"parse_time":{"title":"Parse time","value":"1.39"},"bind_time":{"title":"Bind time","value":"0.64"},"check_time":{"title":"Check time","value":"2.98"},"emit_time":{"title":"Emit time","value":"7.80"},"total_time":{"title":"Total time","value":"12.81"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"400097K"},"i/o_read":{"title":"I/O read","value":"0.16"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.36"},"bind_time":{"title":"Bind time","value":"0.68"},"check_time":{"title":"Check time","value":"3.14"},"emit_time":{"title":"Emit time","value":"8.68"},"total_time":{"title":"Total time","value":"13.86"}}}]},"446c0907bb8212d3f29548828f751e31eb3ad91e":{"2020-02-09T14:58:26.162Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"396288K"},"i/o_read":{"title":"I/O read","value":"0.19"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.69"},"check_time":{"title":"Check time","value":"3.85"},"emit_time":{"title":"Emit time","value":"2.97"},"total_time":{"title":"Total time","value":"9.10"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"298321K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.56"},"bind_time":{"title":"Bind time","value":"0.72"},"check_time":{"title":"Check time","value":"3.87"},"emit_time":{"title":"Emit time","value":"6.55"},"total_time":{"title":"Total time","value":"12.70"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"447665K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.76"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"3.99"},"emit_time":{"title":"Emit time","value":"11.63"},"total_time":{"title":"Total time","value":"18.23"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"375466K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"3.83"},"emit_time":{"title":"Emit time","value":"10.01"},"total_time":{"title":"Total time","value":"16.47"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"406424K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.81"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.05"},"emit_time":{"title":"Emit time","value":"11.25"},"total_time":{"title":"Total time","value":"17.95"}}}]},"627b9bccf77b98229d5536da5620dfb47505c728":{"2020-02-16T14:37:03.564Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"400944K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.75"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.25"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"10.00"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"307241K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.57"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.07"},"emit_time":{"title":"Emit time","value":"7.00"},"total_time":{"title":"Total time","value":"13.50"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"451952K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.95"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.60"},"emit_time":{"title":"Emit time","value":"12.66"},"total_time":{"title":"Total time","value":"20.13"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"373711K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.93"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"4.48"},"emit_time":{"title":"Emit time","value":"10.35"},"total_time":{"title":"Total time","value":"17.70"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"434324K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.43"},"emit_time":{"title":"Emit time","value":"11.60"},"total_time":{"title":"Total time","value":"18.75"}}}]},"2a18bed1925866d664b57e8f1369cfcff1d56953":{"2020-03-01T12:49:15.678Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"390627K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.75"},"bind_time":{"title":"Bind time","value":"0.72"},"check_time":{"title":"Check time","value":"4.42"},"emit_time":{"title":"Emit time","value":"3.16"},"total_time":{"title":"Total time","value":"10.04"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"450722K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.68"},"bind_time":{"title":"Bind time","value":"0.67"},"check_time":{"title":"Check time","value":"4.50"},"emit_time":{"title":"Emit time","value":"3.44"},"total_time":{"title":"Total time","value":"10.29"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"281370K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.56"},"emit_time":{"title":"Emit time","value":"4.75"},"total_time":{"title":"Total time","value":"11.90"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"282855K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.87"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.30"},"emit_time":{"title":"Emit time","value":"4.86"},"total_time":{"title":"Total time","value":"11.85"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"285858K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.86"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.68"},"emit_time":{"title":"Emit time","value":"5.08"},"total_time":{"title":"Total time","value":"12.42"}}}]},"cbe2b88bef120261c98af01564da59a9c93860e6":{"2020-03-28T19:50:14.554Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"407750"},"identifiers":{"title":"Identifiers","value":"127353"},"symbols":{"title":"Symbols","value":"102527"},"types":{"title":"Types","value":"37227"},"memory_used":{"title":"Memory used","value":"409652K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.59"},"bind_time":{"title":"Bind time","value":"0.73"},"check_time":{"title":"Check time","value":"3.80"},"emit_time":{"title":"Emit time","value":"2.78"},"total_time":{"title":"Total time","value":"8.90"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"407750"},"identifiers":{"title":"Identifiers","value":"127353"},"symbols":{"title":"Symbols","value":"102527"},"types":{"title":"Types","value":"37227"},"memory_used":{"title":"Memory used","value":"258517K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.54"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.70"},"emit_time":{"title":"Emit time","value":"3.27"},"total_time":{"title":"Total time","value":"9.24"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112009"},"nodes":{"title":"Nodes","value":"437906"},"identifiers":{"title":"Identifiers","value":"137401"},"symbols":{"title":"Symbols","value":"102562"},"types":{"title":"Types","value":"32255"},"memory_used":{"title":"Memory used","value":"270887K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.63"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"4.17"},"emit_time":{"title":"Emit time","value":"4.34"},"total_time":{"title":"Total time","value":"10.90"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97009"},"nodes":{"title":"Nodes","value":"442906"},"identifiers":{"title":"Identifiers","value":"132401"},"symbols":{"title":"Symbols","value":"92563"},"types":{"title":"Types","value":"27255"},"memory_used":{"title":"Memory used","value":"291067K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.70"},"check_time":{"title":"Check time","value":"3.91"},"emit_time":{"title":"Emit time","value":"4.34"},"total_time":{"title":"Total time","value":"10.60"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104509"},"nodes":{"title":"Nodes","value":"440406"},"identifiers":{"title":"Identifiers","value":"134901"},"symbols":{"title":"Symbols","value":"97563"},"types":{"title":"Types","value":"29755"},"memory_used":{"title":"Memory used","value":"276174K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.16"},"emit_time":{"title":"Emit time","value":"4.44"},"total_time":{"title":"Total time","value":"11.05"}}}]},"c22c1998c877b7856df99fd999b7c0fe9d025e49":{"2020-04-11T10:31:23.633Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112007"},"nodes":{"title":"Nodes","value":"407869"},"identifiers":{"title":"Identifiers","value":"127403"},"symbols":{"title":"Symbols","value":"102555"},"types":{"title":"Types","value":"37241"},"memory_used":{"title":"Memory used","value":"404155K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.67"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.24"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"9.93"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112007"},"nodes":{"title":"Nodes","value":"407869"},"identifiers":{"title":"Identifiers","value":"127403"},"symbols":{"title":"Symbols","value":"102555"},"types":{"title":"Types","value":"37241"},"memory_used":{"title":"Memory used","value":"458916K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.69"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.02"},"emit_time":{"title":"Emit time","value":"3.24"},"total_time":{"title":"Total time","value":"9.80"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112023"},"nodes":{"title":"Nodes","value":"438025"},"identifiers":{"title":"Identifiers","value":"137451"},"symbols":{"title":"Symbols","value":"102590"},"types":{"title":"Types","value":"32269"},"memory_used":{"title":"Memory used","value":"280336K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.72"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.29"},"emit_time":{"title":"Emit time","value":"4.57"},"total_time":{"title":"Total time","value":"11.39"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97023"},"nodes":{"title":"Nodes","value":"443025"},"identifiers":{"title":"Identifiers","value":"132451"},"symbols":{"title":"Symbols","value":"92591"},"types":{"title":"Types","value":"27269"},"memory_used":{"title":"Memory used","value":"263211K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.70"},"bind_time":{"title":"Bind time","value":"0.77"},"check_time":{"title":"Check time","value":"3.96"},"emit_time":{"title":"Emit time","value":"4.47"},"total_time":{"title":"Total time","value":"10.91"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104523"},"nodes":{"title":"Nodes","value":"440525"},"identifiers":{"title":"Identifiers","value":"134951"},"symbols":{"title":"Symbols","value":"97591"},"types":{"title":"Types","value":"29769"},"memory_used":{"title":"Memory used","value":"279807K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"4.61"},"total_time":{"title":"Total time","value":"11.51"}}}]}}} \ No newline at end of file +{"master":{"619cbd70cd27b36544bef0baf30de817f975b017":{"2020-01-05T14:48:17.400Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"401883K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.82"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.72"},"emit_time":{"title":"Emit time","value":"3.51"},"total_time":{"title":"Total time","value":"11.01"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"297348K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.84"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.83"},"emit_time":{"title":"Emit time","value":"7.82"},"total_time":{"title":"Total time","value":"15.44"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"488183K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.15"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"5.21"},"emit_time":{"title":"Emit time","value":"14.81"},"total_time":{"title":"Total time","value":"23.09"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"395290K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"2.19"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"4.96"},"emit_time":{"title":"Emit time","value":"11.47"},"total_time":{"title":"Total time","value":"19.56"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"454459K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.55"},"parse_time":{"title":"Parse time","value":"2.09"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"5.03"},"emit_time":{"title":"Emit time","value":"13.53"},"total_time":{"title":"Total time","value":"21.57"}}}]},"9f32c58bdb0a4df353e7b3b128cff0441186ad5b":{"2020-01-13T04:55:19.598Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"403531K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.91"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.75"},"emit_time":{"title":"Emit time","value":"3.50"},"total_time":{"title":"Total time","value":"11.08"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"293146K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.93"},"check_time":{"title":"Check time","value":"4.81"},"emit_time":{"title":"Emit time","value":"7.88"},"total_time":{"title":"Total time","value":"15.46"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"479336K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.53"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.96"},"check_time":{"title":"Check time","value":"5.25"},"emit_time":{"title":"Emit time","value":"14.85"},"total_time":{"title":"Total time","value":"23.13"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"379998K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"2.06"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.78"},"emit_time":{"title":"Emit time","value":"11.53"},"total_time":{"title":"Total time","value":"19.27"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"456552K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.56"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"5.07"},"emit_time":{"title":"Emit time","value":"13.65"},"total_time":{"title":"Total time","value":"21.70"}}}]},"00d9904b19b5a3f4fadbe22068cb4cde365f904a":{"2020-01-13T05:09:35.499Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"403867K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.39"},"parse_time":{"title":"Parse time","value":"1.64"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.04"},"emit_time":{"title":"Emit time","value":"3.05"},"total_time":{"title":"Total time","value":"9.56"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"298958K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.08"},"emit_time":{"title":"Emit time","value":"6.56"},"total_time":{"title":"Total time","value":"13.03"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"481671K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"12.37"},"total_time":{"title":"Total time","value":"19.37"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"392206K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.80"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"9.83"},"total_time":{"title":"Total time","value":"16.75"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"450953K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"4.31"},"emit_time":{"title":"Emit time","value":"11.48"},"total_time":{"title":"Total time","value":"18.38"}}}]},"0253e95436a2658f39841d108d6e7db464b49895":{"2020-01-14T14:34:18.560Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"400032K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.71"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.42"},"emit_time":{"title":"Emit time","value":"3.24"},"total_time":{"title":"Total time","value":"10.26"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"305919K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.68"},"bind_time":{"title":"Bind time","value":"0.83"},"check_time":{"title":"Check time","value":"4.37"},"emit_time":{"title":"Emit time","value":"7.30"},"total_time":{"title":"Total time","value":"14.19"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"435880K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.02"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"4.89"},"emit_time":{"title":"Emit time","value":"13.23"},"total_time":{"title":"Total time","value":"21.04"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"393002K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.57"},"parse_time":{"title":"Parse time","value":"2.06"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.57"},"emit_time":{"title":"Emit time","value":"11.31"},"total_time":{"title":"Total time","value":"18.73"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"419846K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"2.01"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.65"},"emit_time":{"title":"Emit time","value":"12.23"},"total_time":{"title":"Total time","value":"19.74"}}}]},"6235f37c3b49c4f94bb77fdda7c99546af0284d5":{"2020-01-14T20:10:18.151Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"399135K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.81"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"4.57"},"emit_time":{"title":"Emit time","value":"3.49"},"total_time":{"title":"Total time","value":"10.78"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5086"},"lines":{"title":"Lines","value":"111369"},"nodes":{"title":"Nodes","value":"406632"},"identifiers":{"title":"Identifiers","value":"127078"},"symbols":{"title":"Symbols","value":"102205"},"types":{"title":"Types","value":"37200"},"memory_used":{"title":"Memory used","value":"302616K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.49"},"emit_time":{"title":"Emit time","value":"7.45"},"total_time":{"title":"Total time","value":"14.65"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"111385"},"nodes":{"title":"Nodes","value":"436788"},"identifiers":{"title":"Identifiers","value":"137126"},"symbols":{"title":"Symbols","value":"102240"},"types":{"title":"Types","value":"32228"},"memory_used":{"title":"Memory used","value":"453696K"},"i/o_read":{"title":"I/O read","value":"0.80"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"2.58"},"bind_time":{"title":"Bind time","value":"0.90"},"check_time":{"title":"Check time","value":"5.08"},"emit_time":{"title":"Emit time","value":"13.39"},"total_time":{"title":"Total time","value":"21.96"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"96385"},"nodes":{"title":"Nodes","value":"441788"},"identifiers":{"title":"Identifiers","value":"132126"},"symbols":{"title":"Symbols","value":"92241"},"types":{"title":"Types","value":"27228"},"memory_used":{"title":"Memory used","value":"395581K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.52"},"parse_time":{"title":"Parse time","value":"1.99"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.68"},"emit_time":{"title":"Emit time","value":"11.12"},"total_time":{"title":"Total time","value":"18.64"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5091"},"lines":{"title":"Lines","value":"103885"},"nodes":{"title":"Nodes","value":"439288"},"identifiers":{"title":"Identifiers","value":"134626"},"symbols":{"title":"Symbols","value":"97241"},"types":{"title":"Types","value":"29728"},"memory_used":{"title":"Memory used","value":"428262K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.55"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.89"},"check_time":{"title":"Check time","value":"4.91"},"emit_time":{"title":"Emit time","value":"12.47"},"total_time":{"title":"Total time","value":"20.34"}}}]},"ad76471504f18882604cf83c76904119870c2954":{"2020-01-16T08:01:05.488Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5087"},"lines":{"title":"Lines","value":"111494"},"nodes":{"title":"Nodes","value":"407644"},"identifiers":{"title":"Identifiers","value":"127326"},"symbols":{"title":"Symbols","value":"102438"},"types":{"title":"Types","value":"37186"},"memory_used":{"title":"Memory used","value":"399261K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.96"},"bind_time":{"title":"Bind time","value":"0.95"},"check_time":{"title":"Check time","value":"4.83"},"emit_time":{"title":"Emit time","value":"3.61"},"total_time":{"title":"Total time","value":"11.35"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5087"},"lines":{"title":"Lines","value":"111494"},"nodes":{"title":"Nodes","value":"407644"},"identifiers":{"title":"Identifiers","value":"127326"},"symbols":{"title":"Symbols","value":"102438"},"types":{"title":"Types","value":"37186"},"memory_used":{"title":"Memory used","value":"308309K"},"i/o_read":{"title":"I/O read","value":"0.30"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.88"},"bind_time":{"title":"Bind time","value":"0.97"},"check_time":{"title":"Check time","value":"4.85"},"emit_time":{"title":"Emit time","value":"7.91"},"total_time":{"title":"Total time","value":"15.61"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"111510"},"nodes":{"title":"Nodes","value":"437800"},"identifiers":{"title":"Identifiers","value":"137374"},"symbols":{"title":"Symbols","value":"102473"},"types":{"title":"Types","value":"32214"},"memory_used":{"title":"Memory used","value":"452988K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.58"},"parse_time":{"title":"Parse time","value":"2.20"},"bind_time":{"title":"Bind time","value":"0.97"},"check_time":{"title":"Check time","value":"5.35"},"emit_time":{"title":"Emit time","value":"13.87"},"total_time":{"title":"Total time","value":"22.39"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"96510"},"nodes":{"title":"Nodes","value":"442800"},"identifiers":{"title":"Identifiers","value":"132374"},"symbols":{"title":"Symbols","value":"92474"},"types":{"title":"Types","value":"27214"},"memory_used":{"title":"Memory used","value":"377474K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.56"},"parse_time":{"title":"Parse time","value":"2.21"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"5.13"},"emit_time":{"title":"Emit time","value":"12.21"},"total_time":{"title":"Total time","value":"20.49"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5092"},"lines":{"title":"Lines","value":"104010"},"nodes":{"title":"Nodes","value":"440300"},"identifiers":{"title":"Identifiers","value":"134874"},"symbols":{"title":"Symbols","value":"97474"},"types":{"title":"Types","value":"29714"},"memory_used":{"title":"Memory used","value":"429832K"},"i/o_read":{"title":"I/O read","value":"0.32"},"i/o_write":{"title":"I/O write","value":"0.60"},"parse_time":{"title":"Parse time","value":"2.15"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"5.17"},"emit_time":{"title":"Emit time","value":"13.34"},"total_time":{"title":"Total time","value":"21.60"}}}]},"385665f2e325c26d39fa961d3222f244d19e036d":{"2020-01-18T08:35:50.971Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"228162K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.69"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"3.43"},"total_time":{"title":"Total time","value":"10.33"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"296383K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.71"},"bind_time":{"title":"Bind time","value":"0.87"},"check_time":{"title":"Check time","value":"4.35"},"emit_time":{"title":"Emit time","value":"7.05"},"total_time":{"title":"Total time","value":"13.98"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"455376K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.53"},"parse_time":{"title":"Parse time","value":"1.89"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.65"},"emit_time":{"title":"Emit time","value":"12.47"},"total_time":{"title":"Total time","value":"19.87"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"380922K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.91"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.51"},"emit_time":{"title":"Emit time","value":"10.35"},"total_time":{"title":"Total time","value":"17.61"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"432654K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.97"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.60"},"emit_time":{"title":"Emit time","value":"11.86"},"total_time":{"title":"Total time","value":"19.27"}}}]},"2d1c34ab401dbb38aca59a8ad584468a81979b73":{"2020-01-29T12:11:34.200Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"390619K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.36"},"parse_time":{"title":"Parse time","value":"2.13"},"bind_time":{"title":"Bind time","value":"0.70"},"check_time":{"title":"Check time","value":"3.76"},"emit_time":{"title":"Emit time","value":"2.94"},"total_time":{"title":"Total time","value":"9.54"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"310463K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"3.85"},"emit_time":{"title":"Emit time","value":"6.43"},"total_time":{"title":"Total time","value":"12.74"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"446160K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.82"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.09"},"emit_time":{"title":"Emit time","value":"11.37"},"total_time":{"title":"Total time","value":"18.12"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"364299K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.77"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"3.77"},"emit_time":{"title":"Emit time","value":"9.65"},"total_time":{"title":"Total time","value":"15.99"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"421232K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.77"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.07"},"emit_time":{"title":"Emit time","value":"10.93"},"total_time":{"title":"Total time","value":"17.58"}}}]},"0b376999d2028ded4494d243781f731141bb5f8c":{"2020-01-30T20:55:27.841Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"404296K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.49"},"bind_time":{"title":"Bind time","value":"0.78"},"check_time":{"title":"Check time","value":"3.50"},"emit_time":{"title":"Emit time","value":"2.89"},"total_time":{"title":"Total time","value":"8.66"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"292203K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.49"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"3.59"},"emit_time":{"title":"Emit time","value":"6.14"},"total_time":{"title":"Total time","value":"12.01"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"450465K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.66"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"3.78"},"emit_time":{"title":"Emit time","value":"10.97"},"total_time":{"title":"Total time","value":"17.21"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"363721K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"3.58"},"emit_time":{"title":"Emit time","value":"9.37"},"total_time":{"title":"Total time","value":"15.35"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"411516K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.70"},"bind_time":{"title":"Bind time","value":"0.78"},"check_time":{"title":"Check time","value":"3.77"},"emit_time":{"title":"Emit time","value":"10.41"},"total_time":{"title":"Total time","value":"16.67"}}}]},"4301c186734ec0aca663bd6036f2e3f85ea9012d":{"2020-01-31T18:53:43.631Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"406001K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.19"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"9.81"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"297999K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"6.90"},"total_time":{"title":"Total time","value":"13.73"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"448021K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.53"},"emit_time":{"title":"Emit time","value":"12.22"},"total_time":{"title":"Total time","value":"19.53"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"375400K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"4.36"},"emit_time":{"title":"Emit time","value":"10.50"},"total_time":{"title":"Total time","value":"17.48"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"436122K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.49"},"emit_time":{"title":"Emit time","value":"11.61"},"total_time":{"title":"Total time","value":"18.76"}}}]},"27ae136b8aa12caa15557ba38cb95cec05ea8c59":{"2020-02-02T12:31:03.561Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"391088K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.33"},"parse_time":{"title":"Parse time","value":"1.44"},"bind_time":{"title":"Bind time","value":"0.66"},"check_time":{"title":"Check time","value":"3.42"},"emit_time":{"title":"Emit time","value":"2.69"},"total_time":{"title":"Total time","value":"8.21"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"296355K"},"i/o_read":{"title":"I/O read","value":"0.19"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.42"},"bind_time":{"title":"Bind time","value":"0.66"},"check_time":{"title":"Check time","value":"3.51"},"emit_time":{"title":"Emit time","value":"5.93"},"total_time":{"title":"Total time","value":"11.53"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"458632K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.77"},"check_time":{"title":"Check time","value":"3.61"},"emit_time":{"title":"Emit time","value":"10.85"},"total_time":{"title":"Total time","value":"16.83"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"369084K"},"i/o_read":{"title":"I/O read","value":"0.17"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.56"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.53"},"emit_time":{"title":"Emit time","value":"9.06"},"total_time":{"title":"Total time","value":"14.90"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"404199K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.63"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.71"},"emit_time":{"title":"Emit time","value":"9.97"},"total_time":{"title":"Total time","value":"16.06"}}}]},"8d7ec18d368e07458c5ead29be61e855fd359767":{"2020-02-02T12:46:32.646Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"411123K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.60"},"bind_time":{"title":"Bind time","value":"0.83"},"check_time":{"title":"Check time","value":"4.08"},"emit_time":{"title":"Emit time","value":"3.06"},"total_time":{"title":"Total time","value":"9.58"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"306243K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.54"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.12"},"emit_time":{"title":"Emit time","value":"6.86"},"total_time":{"title":"Total time","value":"13.36"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"459621K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.81"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"11.69"},"total_time":{"title":"Total time","value":"18.75"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"368503K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.74"},"check_time":{"title":"Check time","value":"4.18"},"emit_time":{"title":"Emit time","value":"10.08"},"total_time":{"title":"Total time","value":"16.83"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"413154K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.50"},"parse_time":{"title":"Parse time","value":"1.85"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.40"},"emit_time":{"title":"Emit time","value":"11.47"},"total_time":{"title":"Total time","value":"18.51"}}}]},"37b4b7e901df103158c45ce01152587f4b81febf":{"2020-02-05T17:47:58.889Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"411964K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.64"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"3.89"},"emit_time":{"title":"Emit time","value":"3.10"},"total_time":{"title":"Total time","value":"9.39"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"302205K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.42"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"3.82"},"emit_time":{"title":"Emit time","value":"6.62"},"total_time":{"title":"Total time","value":"12.90"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"448624K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"4.24"},"emit_time":{"title":"Emit time","value":"12.02"},"total_time":{"title":"Total time","value":"18.91"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"382471K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.54"},"parse_time":{"title":"Parse time","value":"1.83"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"3.89"},"emit_time":{"title":"Emit time","value":"10.45"},"total_time":{"title":"Total time","value":"17.00"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"386448K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.52"},"parse_time":{"title":"Parse time","value":"1.89"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"4.15"},"emit_time":{"title":"Emit time","value":"11.40"},"total_time":{"title":"Total time","value":"18.32"}}}]},"3006c84bee945dc86f1faae9cbd2e960377c6be3":{"2020-02-08T20:55:16.243Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"392240K"},"i/o_read":{"title":"I/O read","value":"0.15"},"i/o_write":{"title":"I/O write","value":"0.34"},"parse_time":{"title":"Parse time","value":"1.20"},"bind_time":{"title":"Bind time","value":"0.55"},"check_time":{"title":"Check time","value":"2.95"},"emit_time":{"title":"Emit time","value":"2.38"},"total_time":{"title":"Total time","value":"7.08"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112183"},"nodes":{"title":"Nodes","value":"408777"},"identifiers":{"title":"Identifiers","value":"127649"},"symbols":{"title":"Symbols","value":"102723"},"types":{"title":"Types","value":"37275"},"memory_used":{"title":"Memory used","value":"335503K"},"i/o_read":{"title":"I/O read","value":"0.18"},"i/o_write":{"title":"I/O write","value":"0.35"},"parse_time":{"title":"Parse time","value":"1.23"},"bind_time":{"title":"Bind time","value":"0.55"},"check_time":{"title":"Check time","value":"3.08"},"emit_time":{"title":"Emit time","value":"5.29"},"total_time":{"title":"Total time","value":"10.15"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112199"},"nodes":{"title":"Nodes","value":"438933"},"identifiers":{"title":"Identifiers","value":"137697"},"symbols":{"title":"Symbols","value":"102758"},"types":{"title":"Types","value":"32303"},"memory_used":{"title":"Memory used","value":"439512K"},"i/o_read":{"title":"I/O read","value":"0.15"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.40"},"bind_time":{"title":"Bind time","value":"0.65"},"check_time":{"title":"Check time","value":"3.17"},"emit_time":{"title":"Emit time","value":"9.14"},"total_time":{"title":"Total time","value":"14.36"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97199"},"nodes":{"title":"Nodes","value":"443933"},"identifiers":{"title":"Identifiers","value":"132697"},"symbols":{"title":"Symbols","value":"92759"},"types":{"title":"Types","value":"27303"},"memory_used":{"title":"Memory used","value":"365703K"},"i/o_read":{"title":"I/O read","value":"0.16"},"i/o_write":{"title":"I/O write","value":"0.35"},"parse_time":{"title":"Parse time","value":"1.39"},"bind_time":{"title":"Bind time","value":"0.64"},"check_time":{"title":"Check time","value":"2.98"},"emit_time":{"title":"Emit time","value":"7.80"},"total_time":{"title":"Total time","value":"12.81"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104699"},"nodes":{"title":"Nodes","value":"441433"},"identifiers":{"title":"Identifiers","value":"135197"},"symbols":{"title":"Symbols","value":"97759"},"types":{"title":"Types","value":"29803"},"memory_used":{"title":"Memory used","value":"400097K"},"i/o_read":{"title":"I/O read","value":"0.16"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.36"},"bind_time":{"title":"Bind time","value":"0.68"},"check_time":{"title":"Check time","value":"3.14"},"emit_time":{"title":"Emit time","value":"8.68"},"total_time":{"title":"Total time","value":"13.86"}}}]},"446c0907bb8212d3f29548828f751e31eb3ad91e":{"2020-02-09T14:58:26.162Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"396288K"},"i/o_read":{"title":"I/O read","value":"0.19"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.58"},"bind_time":{"title":"Bind time","value":"0.69"},"check_time":{"title":"Check time","value":"3.85"},"emit_time":{"title":"Emit time","value":"2.97"},"total_time":{"title":"Total time","value":"9.10"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"298321K"},"i/o_read":{"title":"I/O read","value":"0.20"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.56"},"bind_time":{"title":"Bind time","value":"0.72"},"check_time":{"title":"Check time","value":"3.87"},"emit_time":{"title":"Emit time","value":"6.55"},"total_time":{"title":"Total time","value":"12.70"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"447665K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"1.76"},"bind_time":{"title":"Bind time","value":"0.86"},"check_time":{"title":"Check time","value":"3.99"},"emit_time":{"title":"Emit time","value":"11.63"},"total_time":{"title":"Total time","value":"18.23"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"375466K"},"i/o_read":{"title":"I/O read","value":"0.21"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"3.83"},"emit_time":{"title":"Emit time","value":"10.01"},"total_time":{"title":"Total time","value":"16.47"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"406424K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.81"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.05"},"emit_time":{"title":"Emit time","value":"11.25"},"total_time":{"title":"Total time","value":"17.95"}}}]},"627b9bccf77b98229d5536da5620dfb47505c728":{"2020-02-16T14:37:03.564Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"400944K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.41"},"parse_time":{"title":"Parse time","value":"1.75"},"bind_time":{"title":"Bind time","value":"0.84"},"check_time":{"title":"Check time","value":"4.25"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"10.00"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"307241K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.57"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.07"},"emit_time":{"title":"Emit time","value":"7.00"},"total_time":{"title":"Total time","value":"13.50"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"451952K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.95"},"bind_time":{"title":"Bind time","value":"0.92"},"check_time":{"title":"Check time","value":"4.60"},"emit_time":{"title":"Emit time","value":"12.66"},"total_time":{"title":"Total time","value":"20.13"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"373711K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.93"},"bind_time":{"title":"Bind time","value":"0.94"},"check_time":{"title":"Check time","value":"4.48"},"emit_time":{"title":"Emit time","value":"10.35"},"total_time":{"title":"Total time","value":"17.70"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"434324K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.47"},"parse_time":{"title":"Parse time","value":"1.92"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.43"},"emit_time":{"title":"Emit time","value":"11.60"},"total_time":{"title":"Total time","value":"18.75"}}}]},"2a18bed1925866d664b57e8f1369cfcff1d56953":{"2020-03-01T12:49:15.678Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"390627K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.75"},"bind_time":{"title":"Bind time","value":"0.72"},"check_time":{"title":"Check time","value":"4.42"},"emit_time":{"title":"Emit time","value":"3.16"},"total_time":{"title":"Total time","value":"10.04"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111977"},"nodes":{"title":"Nodes","value":"407657"},"identifiers":{"title":"Identifiers","value":"127318"},"symbols":{"title":"Symbols","value":"102506"},"types":{"title":"Types","value":"37211"},"memory_used":{"title":"Memory used","value":"450722K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.68"},"bind_time":{"title":"Bind time","value":"0.67"},"check_time":{"title":"Check time","value":"4.50"},"emit_time":{"title":"Emit time","value":"3.44"},"total_time":{"title":"Total time","value":"10.29"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"437813"},"identifiers":{"title":"Identifiers","value":"137366"},"symbols":{"title":"Symbols","value":"102541"},"types":{"title":"Types","value":"32239"},"memory_used":{"title":"Memory used","value":"281370K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.56"},"emit_time":{"title":"Emit time","value":"4.75"},"total_time":{"title":"Total time","value":"11.90"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"96993"},"nodes":{"title":"Nodes","value":"442813"},"identifiers":{"title":"Identifiers","value":"132366"},"symbols":{"title":"Symbols","value":"92542"},"types":{"title":"Types","value":"27239"},"memory_used":{"title":"Memory used","value":"282855K"},"i/o_read":{"title":"I/O read","value":"0.28"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.87"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.30"},"emit_time":{"title":"Emit time","value":"4.86"},"total_time":{"title":"Total time","value":"11.85"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104493"},"nodes":{"title":"Nodes","value":"440313"},"identifiers":{"title":"Identifiers","value":"134866"},"symbols":{"title":"Symbols","value":"97542"},"types":{"title":"Types","value":"29739"},"memory_used":{"title":"Memory used","value":"285858K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.49"},"parse_time":{"title":"Parse time","value":"1.86"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.68"},"emit_time":{"title":"Emit time","value":"5.08"},"total_time":{"title":"Total time","value":"12.42"}}}]},"cbe2b88bef120261c98af01564da59a9c93860e6":{"2020-03-28T19:50:14.554Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"407750"},"identifiers":{"title":"Identifiers","value":"127353"},"symbols":{"title":"Symbols","value":"102527"},"types":{"title":"Types","value":"37227"},"memory_used":{"title":"Memory used","value":"409652K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.37"},"parse_time":{"title":"Parse time","value":"1.59"},"bind_time":{"title":"Bind time","value":"0.73"},"check_time":{"title":"Check time","value":"3.80"},"emit_time":{"title":"Emit time","value":"2.78"},"total_time":{"title":"Total time","value":"8.90"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"111993"},"nodes":{"title":"Nodes","value":"407750"},"identifiers":{"title":"Identifiers","value":"127353"},"symbols":{"title":"Symbols","value":"102527"},"types":{"title":"Types","value":"37227"},"memory_used":{"title":"Memory used","value":"258517K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.40"},"parse_time":{"title":"Parse time","value":"1.54"},"bind_time":{"title":"Bind time","value":"0.75"},"check_time":{"title":"Check time","value":"3.70"},"emit_time":{"title":"Emit time","value":"3.27"},"total_time":{"title":"Total time","value":"9.24"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112009"},"nodes":{"title":"Nodes","value":"437906"},"identifiers":{"title":"Identifiers","value":"137401"},"symbols":{"title":"Symbols","value":"102562"},"types":{"title":"Types","value":"32255"},"memory_used":{"title":"Memory used","value":"270887K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.63"},"bind_time":{"title":"Bind time","value":"0.76"},"check_time":{"title":"Check time","value":"4.17"},"emit_time":{"title":"Emit time","value":"4.34"},"total_time":{"title":"Total time","value":"10.90"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97009"},"nodes":{"title":"Nodes","value":"442906"},"identifiers":{"title":"Identifiers","value":"132401"},"symbols":{"title":"Symbols","value":"92563"},"types":{"title":"Types","value":"27255"},"memory_used":{"title":"Memory used","value":"291067K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.70"},"check_time":{"title":"Check time","value":"3.91"},"emit_time":{"title":"Emit time","value":"4.34"},"total_time":{"title":"Total time","value":"10.60"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104509"},"nodes":{"title":"Nodes","value":"440406"},"identifiers":{"title":"Identifiers","value":"134901"},"symbols":{"title":"Symbols","value":"97563"},"types":{"title":"Types","value":"29755"},"memory_used":{"title":"Memory used","value":"276174K"},"i/o_read":{"title":"I/O read","value":"0.22"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.65"},"bind_time":{"title":"Bind time","value":"0.80"},"check_time":{"title":"Check time","value":"4.16"},"emit_time":{"title":"Emit time","value":"4.44"},"total_time":{"title":"Total time","value":"11.05"}}}]},"c22c1998c877b7856df99fd999b7c0fe9d025e49":{"2020-04-11T10:31:23.633Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112007"},"nodes":{"title":"Nodes","value":"407869"},"identifiers":{"title":"Identifiers","value":"127403"},"symbols":{"title":"Symbols","value":"102555"},"types":{"title":"Types","value":"37241"},"memory_used":{"title":"Memory used","value":"404155K"},"i/o_read":{"title":"I/O read","value":"0.25"},"i/o_write":{"title":"I/O write","value":"0.45"},"parse_time":{"title":"Parse time","value":"1.67"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.24"},"emit_time":{"title":"Emit time","value":"3.17"},"total_time":{"title":"Total time","value":"9.93"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112007"},"nodes":{"title":"Nodes","value":"407869"},"identifiers":{"title":"Identifiers","value":"127403"},"symbols":{"title":"Symbols","value":"102555"},"types":{"title":"Types","value":"37241"},"memory_used":{"title":"Memory used","value":"458916K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.43"},"parse_time":{"title":"Parse time","value":"1.69"},"bind_time":{"title":"Bind time","value":"0.85"},"check_time":{"title":"Check time","value":"4.02"},"emit_time":{"title":"Emit time","value":"3.24"},"total_time":{"title":"Total time","value":"9.80"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112023"},"nodes":{"title":"Nodes","value":"438025"},"identifiers":{"title":"Identifiers","value":"137451"},"symbols":{"title":"Symbols","value":"102590"},"types":{"title":"Types","value":"32269"},"memory_used":{"title":"Memory used","value":"280336K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"1.72"},"bind_time":{"title":"Bind time","value":"0.82"},"check_time":{"title":"Check time","value":"4.29"},"emit_time":{"title":"Emit time","value":"4.57"},"total_time":{"title":"Total time","value":"11.39"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97023"},"nodes":{"title":"Nodes","value":"443025"},"identifiers":{"title":"Identifiers","value":"132451"},"symbols":{"title":"Symbols","value":"92591"},"types":{"title":"Types","value":"27269"},"memory_used":{"title":"Memory used","value":"263211K"},"i/o_read":{"title":"I/O read","value":"0.23"},"i/o_write":{"title":"I/O write","value":"0.44"},"parse_time":{"title":"Parse time","value":"1.70"},"bind_time":{"title":"Bind time","value":"0.77"},"check_time":{"title":"Check time","value":"3.96"},"emit_time":{"title":"Emit time","value":"4.47"},"total_time":{"title":"Total time","value":"10.91"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104523"},"nodes":{"title":"Nodes","value":"440525"},"identifiers":{"title":"Identifiers","value":"134951"},"symbols":{"title":"Symbols","value":"97591"},"types":{"title":"Types","value":"29769"},"memory_used":{"title":"Memory used","value":"279807K"},"i/o_read":{"title":"I/O read","value":"0.24"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.79"},"bind_time":{"title":"Bind time","value":"0.79"},"check_time":{"title":"Check time","value":"4.33"},"emit_time":{"title":"Emit time","value":"4.61"},"total_time":{"title":"Total time","value":"11.51"}}}]},"05639127eb1f854885bc123939c1988ae941ec73":{"2020-04-14T16:05:10.651Z":[{"types":"no transformer","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112007"},"nodes":{"title":"Nodes","value":"407869"},"identifiers":{"title":"Identifiers","value":"127403"},"symbols":{"title":"Symbols","value":"102555"},"types":{"title":"Types","value":"37241"},"memory_used":{"title":"Memory used","value":"399635K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.46"},"parse_time":{"title":"Parse time","value":"1.73"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"4.57"},"emit_time":{"title":"Emit time","value":"3.35"},"total_time":{"title":"Total time","value":"10.53"}}},{"types":"no createMock","result":{"files":{"title":"Files","value":"5089"},"lines":{"title":"Lines","value":"112007"},"nodes":{"title":"Nodes","value":"407869"},"identifiers":{"title":"Identifiers","value":"127403"},"symbols":{"title":"Symbols","value":"102555"},"types":{"title":"Types","value":"37241"},"memory_used":{"title":"Memory used","value":"251897K"},"i/o_read":{"title":"I/O read","value":"0.26"},"i/o_write":{"title":"I/O write","value":"0.57"},"parse_time":{"title":"Parse time","value":"1.77"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"4.47"},"emit_time":{"title":"Emit time","value":"3.98"},"total_time":{"title":"Total time","value":"11.09"}}},{"types":"One interface per file","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"112023"},"nodes":{"title":"Nodes","value":"438025"},"identifiers":{"title":"Identifiers","value":"137451"},"symbols":{"title":"Symbols","value":"102590"},"types":{"title":"Types","value":"32269"},"memory_used":{"title":"Memory used","value":"274215K"},"i/o_read":{"title":"I/O read","value":"0.29"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"2.07"},"bind_time":{"title":"Bind time","value":"0.91"},"check_time":{"title":"Check time","value":"4.82"},"emit_time":{"title":"Emit time","value":"5.27"},"total_time":{"title":"Total time","value":"13.06"}}},{"types":"Interface reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"97023"},"nodes":{"title":"Nodes","value":"443025"},"identifiers":{"title":"Identifiers","value":"132451"},"symbols":{"title":"Symbols","value":"92591"},"types":{"title":"Types","value":"27269"},"memory_used":{"title":"Memory used","value":"272069K"},"i/o_read":{"title":"I/O read","value":"0.27"},"i/o_write":{"title":"I/O write","value":"0.48"},"parse_time":{"title":"Parse time","value":"2.04"},"bind_time":{"title":"Bind time","value":"0.88"},"check_time":{"title":"Check time","value":"4.75"},"emit_time":{"title":"Emit time","value":"5.26"},"total_time":{"title":"Total time","value":"12.94"}}},{"types":"One Interface / Reuse","result":{"files":{"title":"Files","value":"5094"},"lines":{"title":"Lines","value":"104523"},"nodes":{"title":"Nodes","value":"440525"},"identifiers":{"title":"Identifiers","value":"134951"},"symbols":{"title":"Symbols","value":"97591"},"types":{"title":"Types","value":"29769"},"memory_used":{"title":"Memory used","value":"286311K"},"i/o_read":{"title":"I/O read","value":"0.31"},"i/o_write":{"title":"I/O write","value":"0.51"},"parse_time":{"title":"Parse time","value":"2.11"},"bind_time":{"title":"Bind time","value":"0.87"},"check_time":{"title":"Check time","value":"4.85"},"emit_time":{"title":"Emit time","value":"5.39"},"total_time":{"title":"Total time","value":"13.22"}}}]}}} \ No newline at end of file From 7480aadec805874d2405bde65ae98154fa34c8fc Mon Sep 17 00:00:00 2001 From: Martin Jesper Low Madsen Date: Fri, 8 May 2020 17:02:24 +0200 Subject: [PATCH 43/43] feat(date): add support for Date type (#310) * enhancement(transformer): Mock Date similar to that of Set and Map * chore(transformer): Update TypeScript lib type test for Date --- src/transformer/descriptor/tsLibs/typecriptLibs.ts | 2 ++ .../descriptor/tsLibs/typescriptLibsTypes.ts | 13 +++++++------ test/transformer/descriptor/tsLibs/tsLibs.test.ts | 4 ++-- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/src/transformer/descriptor/tsLibs/typecriptLibs.ts b/src/transformer/descriptor/tsLibs/typecriptLibs.ts index 83fa84a72..9c93f0f8e 100644 --- a/src/transformer/descriptor/tsLibs/typecriptLibs.ts +++ b/src/transformer/descriptor/tsLibs/typecriptLibs.ts @@ -46,6 +46,8 @@ export function GetTypescriptTypeDescriptor(node: ts.TypeReferenceNode, scope: S [], [dataResolved], ); + case(TypescriptLibsTypes.Date): + return ts.createNew(ts.createIdentifier('Date'), undefined, undefined); case(TypescriptLibsTypes.Map): return ts.createNew(ts.createIdentifier('Map'), undefined, undefined); case(TypescriptLibsTypes.Set): diff --git a/src/transformer/descriptor/tsLibs/typescriptLibsTypes.ts b/src/transformer/descriptor/tsLibs/typescriptLibsTypes.ts index 4cedec570..3e7304683 100644 --- a/src/transformer/descriptor/tsLibs/typescriptLibsTypes.ts +++ b/src/transformer/descriptor/tsLibs/typescriptLibsTypes.ts @@ -1,14 +1,15 @@ export enum TypescriptLibsTypes { Array = 'Array', - ReadonlyArray = 'ReadonlyArray', - Number = 'Number', - String = 'String', Boolean = 'Boolean', - Object = 'Object', + Date = 'Date', Function = 'Function', - Promise = 'Promise', Map = 'Map', - Set = 'Set' + Number = 'Number', + Object = 'Object', + Promise = 'Promise', + ReadonlyArray = 'ReadonlyArray', + Set = 'Set', + String = 'String', } export const TypescriptLibsTypesFolder: string = 'node_modules/typescript/lib'; diff --git a/test/transformer/descriptor/tsLibs/tsLibs.test.ts b/test/transformer/descriptor/tsLibs/tsLibs.test.ts index 5999aba7f..5ba03897f 100644 --- a/test/transformer/descriptor/tsLibs/tsLibs.test.ts +++ b/test/transformer/descriptor/tsLibs/tsLibs.test.ts @@ -66,13 +66,13 @@ describe('typescript lib', () => { expect(properties.a).toEqual([]); }); - it('should set undefined for a Date', () => { + it('should create a new Date for a Date', () => { interface Interface { a: Date; } const properties: Interface = createMock(); - expect(properties.a).toBeUndefined(); + expect(properties.a).toBeInstanceOf(Date); }); it('should set a promise resolved for a promise', async () => {